{{ __('Dashboard') }}

@role('hairdresser')

Today's Appointments

{{ $todayAppointmentsCount ?? 0 }}

Total Appointments

{{ $totalAppointmentsCount ?? 0 }}

Available Time Slots

{{ $availableTimeSlotsCount ?? 0 }}

Working Days Set

{{ $workingDaysCount ?? 0 }}

@endrole @role('customer')

Upcoming Appointments

{{ $upcomingAppointmentsCount ?? 0 }}

Past Appointments

{{ $pastAppointmentsCount ?? 0 }}

@endrole

Quick Actions

Recent Activity

@forelse($recentAppointments ?? [] as $appointment)

{{ $appointment->service->name }} with {{ $appointment->hairdresser->name }}

{{ optional($appointment->time_slot)->start_time ? \Carbon\Carbon::parse($appointment->time_slot->start_time)->format('M d, Y h:i A') : 'N/A' }}

{{ ucfirst($appointment->status) }}
@empty

No recent activity

@endforelse