Ciao Dott./Dott.ssa {{ $doctor->name }},
ecco la tua agenda di domani ({{ $dateLabel }}).
@if(empty($appointments))
Nessun appuntamento previsto.
@else
@foreach($appointments as $app)
@php
$dt = $app->scheduled_at;
$serviceName = $app->service?->name;
@endphp
-
{{ $dt?->format('H:i') }}
— {{ $app->patient_name }}
@if($serviceName)
({{ $serviceName }})
@endif
@if(!empty($app->patient_phone))
— Tel: {{ $app->patient_phone }}
@endif
@endforeach
@endif
eDocly