@foreach(['Sun','Mon','Tue','Wed','Thu','Fri','Sat'] as $weekday)
{{ $weekday }}
@endforeach
@foreach($calendarWeeks as $week)
@foreach($week as $day)
@php
$dayPayload = [
'label' => $day['label'],
'date_link' => route('crm.booking.index', [
'date_src' => 'start_datetime',
'date_range' => 'custom',
'date_from' => $day['date'],
'date_to' => $day['date'],
]),
'new_booking_url' => route('crm.booking.index'),
'booking_count' => $day['booking_count'],
'quantity' => $day['quantity'],
'total' => number_format($day['total'], 2, '.', ''),
'rows' => $day['rows'],
];
@endphp
@endforeach
@endforeach