@extends('layouts.app') @section('title', __('clinic.patients')) @section('heading', __('clinic.patients')) @section('content')
| {{ __('clinic.patient_code') }} | {{ __('clinic.full_name') }} | {{ __('clinic.phone') }} | {{ __('clinic.gender') }} | {{ __('clinic.age') }} | {{ __('clinic.status') }} | |
|---|---|---|---|---|---|---|
| {{ $p->patient_code }} | {{ $p->full_name }} | {{ $p->phone }} | {{ __('clinic.' . $p->gender) }} | {{ $p->age ?? '—' }} | {{ __('clinic.' . $p->status) }} | |
| {{ __('clinic.no_records') }} | ||||||