@include('partials.doctor-header')

Pazienti

{{ count($patients) }} paziente/i
🔍
@if(!empty($search)) @endif
@if(!empty($search))
Risultati per: {{ $search }}
@endif
@if(auth()->user()->hasFeature('can_use_patient_export')) Esporta CSV @endif @if(empty($patients) || count($patients) === 0)
Non hai ancora pazienti associati.
@else
@foreach($patients as $patient) @endforeach
Nome Telefono Email Azioni
{{ trim(($patient->first_name ?? '') . ' ' . ($patient->last_name ?? '')) ?: '—' }} {{ $patient->phone ?? '—' }} {{ $patient->email ?? '—' }} Apri scheda
@endif