@extends('layouts.app') @section('content')
| Patient | Patient No | Gender | District | Status | Action |
|---|---|---|---|---|---|
|
{{ $p->first_name }}
{{ $p->last_name }}
@if($p->phone)
{{ $p->phone }}
@endif
|
{{ $p->patient_no }}
|
{{ $p->gender }}
|
{{ $p->district ?? '—' }}
|
{{ ucfirst($status) }} | View Patient |