@extends('crm.master') @section('title', 'CRM Dashboard') @section('content')

Dashboard

Track booking activity, monthly calendar signals, and business volume at a glance.

{{ $calendarMonthLabel }} Booking Calendar
Clean monthly booking view with daily totals and quick drill-down.
@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
Bookings by Month
Monthly booking count across the last 12 months.
Revenue by Month
Monthly revenue trend across the last 12 months.
@endsection @section('head-extra') @endsection @section('page-script') @endsection