@extends('admin.layout') @section('page-title', 'Pricing') @section('content')

Pricing

Add New Pricing
@forelse($pricing as $price) @empty @endforelse
Cloth Type Service Type Price Status Actions
{{ $price->clothType->name }} {{ $price->serviceType->name }} ${{ number_format($price->price, 2) }} {{ $price->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No pricing found
{{ $pricing->links() }}
@endsection