@extends('layouts.master') @section('title') {{ __('sentence.View Prescription') }} @endsection @section('content')
Alger, {{ __('sentence.On') }} {{ $prescription->created_at->format('d-m-Y') }}
{{ __('sentence.Patient Name') }} : {{ $prescription->User->name }} @isset($prescription->User->Patient->birthday) - {{ __('sentence.Age') }} : {{ $prescription->User->Patient->birthday }} ({{ \Carbon\Carbon::parse($prescription->User->Patient->birthday)->age }} Years) @endisset @isset($prescription->User->Patient->gender) - {{ __('sentence.Gender') }} : {{ __('sentence.'.$prescription->User->Patient->gender) }} @endisset @isset($prescription->User->Patient->weight) - {{ __('sentence.Patient Weight') }} : {{ $prescription->User->Patient->weight }} Kg @endisset @isset($prescription->User->Patient->height) - {{ __('sentence.Patient Height') }} : {{ $prescription->User->Patient->height }} @endisset
{{ __('sentence.No Test Required') }}
@endforelse{!! clean(App\Setting::get_option('footer_left')) !!}
{!! clean(App\Setting::get_option('footer_right')) !!}