@extends('layouts.branch') @section('title', 'Patient Registration Report') @section('header', 'Patient Registration Report') @section('content')
| Reg. Date | Photo | UHID | Patient Name | Spouse Name | Gender/Age | Contact |
|---|---|---|---|---|---|---|
| {{ $patient->created_at->format('d M, Y') }} |
@if($patient->photo_path)
|
{{ $patient->uhid }} |
{{ $patient->name }} |
{{ $patient->spouse_name ?? '-' }} | {{ $patient->gender }} / {{ $patient->age }} | {{ $patient->contact_number }} |
|
No records found for the selected range |
||||||