@extends('user.layout') @section('content')
@include('user.templates.navbar')
@include('user.templates.top-bar')
fe
@if (session('success')) @endif
Patient Records
Add Patient
@forelse($patients as $patient) @empty @endforelse
Patient Name Age Gender Mobile No. Doctor Hospital Name
{{ $patient->patient_name }} {{ $patient->age }} {{ $patient->gender }} {{ $patient->phone }} {{ $patient->dr_name }} {{ $patient->hospital_name ?? 'N/A' }}
No patients found.
@endsection