{{ __('Today\'s Appointments') }}

@if($appointments->isEmpty())

No appointments scheduled for today.

@else
@foreach($appointments as $appointment) @endforeach
Time Service Customer Status Actions
{{ optional($appointment->time_slot)->start_time ? \Carbon\Carbon::parse($appointment->time_slot->start_time)->format('h:i A') : 'N/A' }} {{ $appointment->service->name }} {{ $appointment->customer->name }} {{ ucfirst($appointment->status) }}
View @if($appointment->status === 'pending')
@csrf @method('PUT')
@csrf @method('PUT')
@endif
@endif