@extends('admin.layouts.app') @section('title', 'Patients') @section('header') Patients @endsection @section('content')
| Code | Name | Phone | Gender | Status | Actions |
|---|---|---|---|---|---|
| {{ $patient->patient_code }} | {{ $patient->full_name }} | {{ $patient->phone }} | {{ $patient->gender }} | {{ $patient->status ? 'Active' : 'Inactive' }} | View Edit |
| No patients found. | |||||