@extends('layouts.branch') @section('title', 'Patient Registration Report') @section('header', 'Patient Registration Report') @section('content')
@include('partials.branch._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Reports', 'url' => route('branch.reports.index')], ['name' => 'Patient Registration Report', 'url' => route('branch.reports.patients')] ] ])

Total Registered Patients: {{ number_format($totalCount) }}

@forelse($patients as $patient) @empty @endforelse
Reg. Date Photo UHID Patient Name Spouse Name Gender/Age Contact
{{ $patient->created_at->format('d M, Y') }} @if($patient->photo_path) @else
@endif
{{ $patient->uhid }}

{{ $patient->name }}

{{ $patient->spouse_name ?? '-' }} {{ $patient->gender }} / {{ $patient->age }} {{ $patient->contact_number }}

No records found for the selected range

@if($patients->hasPages())
{{ $patients->links() }}
@endif
@endsection