{{ __('Bookings') }}

@if(request()->hasAny(['search', 'service', 'status'])) Clear @endif
@if($bookings->count() > 0)
@foreach($bookings as $booking) @endforeach
Reference Customer Service / Resource Date & Time Status Total Actions
{{ $booking->booking_reference }}
{{ $booking->customer_name }}
{{ $booking->customer_email }}
{{ $booking->service->name }}
{{ $booking->resource->name }}
{{ $booking->booking_date->format('M d, Y') }}
@if($booking->booking_time) {{ Carbon\Carbon::parse($booking->booking_time)->format('h:i A') }} @if($booking->end_time) - {{ Carbon\Carbon::parse($booking->end_time)->format('h:i A') }} @endif @else Daily @endif
@php $statusColors = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'confirmed' => 'bg-green-100 text-green-800', 'cancelled' => 'bg-red-100 text-red-800', 'completed' => 'bg-blue-100 text-blue-800', ]; @endphp {{ ucfirst($booking->status) }} ${{ number_format($booking->total_price, 2) }} View
{{ $bookings->links() }}
@else

No bookings found matching your criteria.

Create a manual booking
@endif