{{ __('main.appointments') }}
@foreach ($appointments as $item) @endforeach
# {{ __('main.customer') }} {{ __('main.appointment_date') }} {{ __('main.status') }} {{ __('main.actions') }}
{{ $loop->index + 1 }}
{{ $item->customer->name }}
{{ $item->branch?->name }}
{{ \Carbon\Carbon::parse($item->date)->format('d/m/Y h:i A') }}
@if($item->notes) {{ __('main.notes') }} @endif @if (Auth::user()->id == $item->branch_id) {{ __('main.delete') }} @endif
@if (count($appointments) == 0) @endif