@extends('layouts/layoutMaster') @section('title', 'View OPD') @section('vendor-style') @vite(['resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-buttons-bs5/buttons.bootstrap5.scss', 'resources/assets/vendor/libs/select2/select2.scss', 'resources/assets/vendor/libs/@form-validation/form-validation.scss', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.scss']) @endsection @section('vendor-script') @vite(['resources/assets/vendor/libs/moment/moment.js', 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', 'resources/assets/vendor/libs/select2/select2.js', 'resources/assets/vendor/libs/@form-validation/popular.js', 'resources/assets/vendor/libs/@form-validation/bootstrap5.js', 'resources/assets/vendor/libs/@form-validation/auto-focus.js', 'resources/assets/vendor/libs/sweetalert2/sweetalert2.js', 'resources/assets/vendor/libs/cleavejs/cleave.js', 'resources/assets/vendor/libs/cleavejs/cleave-phone.js']) @endsection @section('page-script') @vite('resources/assets/js/app-user-list.js') @vite('resources/assets/js/opd-cases-list.js') @endsection @section('content')
MRN: {{ $opdCase->patient->mrn }}
Name: {{ $opdCase->patient->name }}
Visit No#: {{ $opdCase->visit_no }}
Age: {{ $opdCase->patient->age }}
Height: {{ $opdCase->patient->height . ' ft in' }}
Weight: {{ $opdCase->patient->weight . ' kg' }}
Pulse: {{ $opdCase->patient->pulse . ' bpm' }}
Blood Pressure: {{ $opdCase->patient->blood_pressure . ' mm Hg' }}
Temperature: {{ $opdCase->patient->temperature . ' °C' }}
Respiratory: {{ $opdCase->patient->respiratory }}
Doctor: {{ $opdCase->doctor->name }}
Patient's Complain: {!! $opdCase->presenting_complaint ?? 'n/a' !!}
Patient's History: {!! $opdCase->history ?? 'n/a' !!}
Patient's Diagnose: {!! $opdCase->provisional_diagnose ?? 'n/a' !!}
Patient's Examination: {!! $opdCase->examination ?? 'n/a' !!}
Treatment Plan: {!! $opdCase->special_instruction ?? 'n/a' !!}
Follow-up-days: {{ $opdCase->follow_up_days }}
Name: {{ $medication->medicine_name ?? 'n/a' }}
Dose: {{ $medication->dose ?? 'n/a' }}
Frequency: {{ $medication->frequency ?? 'n/a' }}
Duration (days): {{ $medication->duration ?? 'n/a' }}
Name: {{ $medication->medicine_name ?? 'n/a' }}
Dose: {{ $medication->dose ?? 'n/a' }}
Frequency: {{ $medication->frequency ?? 'n/a' }}
Duration (days): {{ $medication->duration ?? 'n/a' }}
Medicine Name | Dose | Frequency | Duration (days) |
---|---|---|---|
{{ $medication->medicine_name ?? '-' }} | {{ $medication->dose ?? '-' }} | {{ $medication->frequency ?? '-' }} | {{ $medication->duration ?? '-' }} |
Instructions: {!! $opdCase->other_medicine ?? 'n/a' !!}