@extends('layouts.admin', [ 'title' => 'Booklio Dashboard', 'pageTitle' => 'Dashboard', 'active' => 'dashboard', ]) @section('content') @php($staffCount = max(count($staff ?? []), 1))
@foreach ($kpis as $kpi)

{{ $kpi['label'] }}

{{ $kpi['value'] }}

{{ $kpi['note'] }}

@endforeach

Today's Schedule

{{ $scheduleDateLabel }}

@forelse ($staff as $member)
{{ $member['initials'] }}
{{ $member['name'] }}
@empty
No staff yet
@endforelse
@foreach (['9 AM', '10 AM', '11 AM', '12 PM', '1 PM', '2 PM', '3 PM', '4 PM', '5 PM'] as $time)
{{ $time }}
@for ($column = 0; $column < $staffCount; $column++)
@endfor @endforeach
@forelse ($scheduleBlocks as $block)

{{ $block['service'] }}

{{ $block['time'] }}

{{ $block['customer'] }}

@empty
No appointments scheduled for this staff view today.
@endforelse
View all
@forelse ($appointments as $appointment)
{{ $appointment['initials'] }}

{{ $appointment['customer'] }}

{{ $appointment['service'] }}

{{ $appointment['time'] }}

{{ $appointment['status'] }}
@empty
No upcoming appointments for today or tomorrow.
@endforelse
View all appointments
{{ $selectedAppointment['initials'] }}

{{ $selectedAppointment['customer'] }}

{{ $selectedAppointment['phone'] }}

Service
{{ $selectedAppointment['service'] }}
Date & Time
{{ $selectedAppointment['date_time'] }}
Staff
{{ $selectedAppointment['staff'] }}
Payment Status
{{ $selectedAppointment['payment_status'] }}
Total Amount
{{ $selectedAppointment['total'] }}
Check In Cancel
View calendar
@forelse ($availability as $member)
{{ $member['initials'] }}

{{ $member['name'] }}

{{ $member['status'] }}

@empty

No staff profiles yet.

@endforelse
View all
@foreach ($invoiceSummary as $invoice)
{{ $invoice['month'] }} {{ $invoice['amount'] }} {{ $invoice['status'] }}
@endforeach
View all
@forelse ($reminders as $reminder)

{{ $reminder['title'] }}

{{ $reminder['meta'] }}

{{ $reminder['status'] }}
@empty
No reminder activity yet.
@endforelse
Customize

Share your booking link or QR code to let customers book with you.

{{ $bookingLink['url'] }}

Link Clicks

{{ $bookingLink['link_clicks'] }}

Bookings

{{ $bookingLink['bookings'] }}

Conversion Rate

{{ $bookingLink['conversion_rate'] }}

@foreach ([1,1,1,0,1,1,1,1,0,1,0,1,0,1,1,1,1,0,1,1,1,0,1,0,1,1,0,0,1,0,1,0,0,1,1,1,1,0,1,1,1,1,0,1,0,1,0,1,1] as $dot) $dot, 'bg-transparent' => ! $dot])> @endforeach
@push('modals')
Close Save Appointment
@endpush @endsection