@extends('layouts.app') @section('header_title', 'Patient Directory') @section('content')

🧑‍⚕️ Registered Patients

@foreach($patients as $patient) @endforeach
CodeFull NameGender/AgePhoneHMO Insurance
{{ $patient->patient_code }}{{ $patient->full_name }}{{ $patient->gender }} / {{ $patient->age }}yrs{{ $patient->phone }}{{ $patient->insurance_provider }}
@endsection