@extends('layouts.doctor') @section('title', 'My Patients') @section('content')
@forelse($patients as $p) {{ $p->full_name }}
{{ $p->code }} {{ $p->phone }} {{ $p->last_visit_date?->format('d M Y') ?? '—' }} @empty No patients yet. @endforelse
{{ $patients->links() }}
@endsection