|
|
{{ $bill->patient->user->full_name }}
|
|
{{ $bill->patient->user->email }}
|
|
{{ !empty($bill->patient->user->phone) ? $bill->patient->user->region_code.$bill->patient->user->phone : __('messages.common.n/a') }}
|
|
{{ $bill->patient->user->gender == 0 ? 'Male' : 'Female' }}
|
|
{{ !empty($bill->patient->user->dob) ? Datetime::createFromFormat('Y-m-d', $bill->patient->user->dob)->format('jS M, Y g:i A') : 'N/A' }}
|
|
#{{ $bill->bill_id }}
|
|
{{ \Carbon\Carbon::parse($bill->bill_date)->format('jS M,Y g:i A') }}
|