|
Patient Code :
@if(isset($group['patient']))
{{ $group['patient']['code'] }}
@endif
|
Patient Name :
@if(isset($group['patient']))
{{ $group['patient']['name'] }}
@endif
|
|
Age :
@if(isset($group['patient']))
{{$group['patient']['age']}}
@endif
|
Gender :
@if(isset($group['patient']))
{{ __($group['patient']['gender']) }}
@endif
|
|
Referred By :
@if(isset($group['doctor']))
{{ $group['doctor']['name'] }}
@endif
|
Date & Time:
{{ \Carbon\Carbon::parse($group['created_at'])->setTimezone('Asia/Karachi')->format('d-m-Y h:i A') }}
|