@extends('layouts.layout')
@section('content')
@lang('Prescription ID') #{{ str_pad($prescription->id, 4, '0', STR_PAD_LEFT) }}
{{ $prescription->user->name }}
{{ $prescription->doctor->name }}
{{ date($companySettings->date_format ?? 'Y-m-d', strtotime($prescription->prescription_date)) }}
{{ $prescription->weight }}
{{ $prescription->height }}
{{ $prescription->blood_pressure }}
{!! nl2br(str_replace(["script"], ["noscript"], $prescription->chief_complaint)) !!}
| @lang('Medicine Name') | @lang('Medicine Type') | @lang('Instruction') | @lang('Days') |
|---|---|---|---|
| {{ $medicineInfo->medicine_name }} | {{ $medicineInfo->medicine_type }} | {{ $medicineInfo->instruction }} | {{ $medicineInfo->day }} |
| @lang('Diagnosis') | @lang('Instruction') |
|---|---|
| {{ $diagnosisInfo->diagnosis }} | {{ $diagnosisInfo->diagnosis_instruction }} |
{{ $prescription->note }}