@foreach($categories as $cat) @endforeach
@foreach($departments as $dept) @endforeach
Code Service Name Category / Dept Base Price Validity Status Actions @forelse($services as $service) {{ $service->code ?: 'N/A' }} {{ $service->name }} @if($service->description)

{{ $service->description }}

@endif
{{ $service->category }} @if($service->department) {{ $service->department->name }} @endif
₹{{ number_format($service->price, 2) }} @if($service->validity_days > 0) {{ $service->validity_days }} Days @else Standard @endif {{ $service->is_active ? 'Active' : 'Inactive' }}
@empty @endforelse
@if($services->hasPages())
{{ $services->links() }}
@endif