@extends('layouts.dashboard') @section('title', 'Bookings') @section('content')

Bookings

Month Week New phone booking
← Previous

{{ $view === 'week' ? $anchor->clone()->startOfWeek()->format('d M').' – '.$anchor->clone()->endOfWeek()->format('d M Y') : $anchor->format('F Y') }}

Next →
@foreach (['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] as $label)
{{ $label }}
@endforeach
@foreach ($days as $day)

{{ $day['date']->format('d') }}

@foreach ($day['entries'] as $entry) @php $status = $entry['booking']->status; @endphp {{ $entry['type'] === 'delivery' ? 'D' : 'C' }} {{ $entry['booking']->last_name }} @endforeach
@endforeach
@endsection