@php $canManageAppointments = app(\App\Services\Qms\QmsPermissions::class)->can( app(\App\Services\Qms\OrganizationResolver::class)->memberFor(auth()->user()), 'appointments.manage' ); @endphp
@if ($canManageAppointments) New appointment @endif @include('partials.flash')
@forelse ($appointments as $appointment) @empty @endforelse
Customer Scheduled Queue Status
{{ $appointment->customer_name }} {{ $appointment->scheduled_at->format('M j, H:i') }} {{ $appointment->serviceQueue?->name ?? '—' }} {{ str_replace('_', ' ', $appointment->status) }} @if ($appointment->status === 'scheduled') Edit
@csrf
@csrf
@elseif ($appointment->ticket) View ticket @endif
No appointments yet.
{{ $appointments->links() }}