@php use App\Support\BusinessTimezone; @endphp
@foreach($cancelledAppointments as $key => $booking)
|
|
{{ BusinessTimezone::formatInstant($booking->created_at, 'd-M-Y h:i A') }}
{{ BusinessTimezone::toBusiness($booking->created_at)?->diffForHumans($booking->scheduledAt()) }}
|
{{ $booking->scheduledAt()->format('d M Y h:i A') }} |
{{ $booking->name ?? 'N/A' }} |
{{ $booking->email ?? 'N/A' }} |
{{ $booking->serviceNamesLabel() !== '—' ? $booking->serviceNamesLabel() : '—' }} |
|