// контроллер
$consultations = Consultation::with('patient.passports')->get()
// blade
@foreach($consultations as $consultation)
{{ $consultation->created_at }}
{{ $consultation->patient->created_at}}
@foreach($consultation->patient->passports as $client_passport)
{{ $client_passport->surname }}
@endforeach
@endforeach