{{ __('Services') }}

Add Service
@if(request()->hasAny(['search', 'category'])) Clear @endif
@if($services->count() > 0)
@foreach($services as $service)
@csrf @method('PATCH')
{{ $service->category->name }}

{{ $service->name }}

{{ Str::limit($service->description, 60) }}

${{ number_format($service->price, 0) }} {{ $service->resources_count }} Resources
@if($service->booking_type === 'hourly') {{ $service->duration }} mins @else Daily @endif Max: {{ $service->max_capacity }}
@endforeach
{{ $services->links() }}
@else

No services found.

Add your first service
@endif