@extends('layouts.app') @section('title') {{ __('messages.opd_patient.opd_patient_details') }} @endsection @section('header_toolbar')

@yield('title')

@endsection @section('content')
{{ Form::hidden('visitedOPDPatients', route('opd.patient.index'), ['id' => 'showVisitedOPDPatients']) }} {{ Form::hidden('opdPatientUrl', url('opds'), ['id' => 'showOpdPatientUrl']) }} {{ Form::hidden('doctorUrl', url('doctors'), ['id' => 'showOpdDoctorUrl']) }} {{ Form::hidden('patient_id', $opdPatientDepartment->patient_id, ['id' => 'showOpdPatientId']) }} {{ Form::hidden('opdPatientDepartmentId', $opdPatientDepartment->id, ['id' => 'showOpdPatientDepartmentId']) }} {{ Form::hidden('defaultDocumentImageUrl', asset('assets/img/default_image.jpg'), ['id' => 'showOpdDefaultDocumentImageUrl', 'class' => 'defaultDocumentImageUrl']) }} {{ Form::hidden('opdDiagnosisCreateUrl', route('opd.diagnosis.store'), ['id' => 'showOpdDiagnosisCreateUrl']) }} {{ Form::hidden('opdDiagnosisUrl', route('opd.diagnosis.index'), ['id' => 'showOpdDiagnosisUrl']) }} {{ Form::hidden('downloadDiagnosisDocumentUrl', url('opd-diagnosis-download'), ['id' => 'showOpdDownloadDiagnosisDocumentUrl']) }} {{ Form::hidden('opdTimelineCreateUrl', route('opd.timelines.store'), ['id' => 'showOpdTimelineCreateUrl']) }} {{ Form::hidden('opdTimelinesUrl', route('opd.timelines.index'), ['id' => 'showOpdTimelinesUrl']) }} {{ Form::hidden('opdPatientCaseDate', $opdPatientDepartment->case_id ? $opdPatientDepartment->patientCase->date : '', ['id' => 'showOpdPatientCaseDate']) }} {{ Form::hidden('id', $opdPatientDepartment->id, ['id' => 'showOpdId']) }} {{ Form::hidden('appointmentDate', $opdPatientDepartment->appointment_date, ['id' => 'showOpdAppointmentDate']) }} {{ Form::hidden('opdPatients', __('messages.opd_patient.opd_patient'), ['id' => 'opdPatients']) }} {{ Form::hidden('opdDiagnosis', __('messages.opd_diagnosis'), ['id' => 'opdDiagnosisDeleteBtn']) }} {{ Form::hidden('opdTimeline', __('messages.opd_timeline'), ['id' => 'opdTimeline']) }} {{ Form::hidden('deleteVariable', __('messages.common.delete'), ['class' => 'deleteVariable']) }} {{ Form::hidden('yesVariable', __('messages.common.yes'), ['class' => 'yesVariable']) }} {{ Form::hidden('noVariable', __('messages.common.no'), ['class' => 'noVariable']) }} {{ Form::hidden('cancelVariable', __('messages.common.cancel'), ['class' => 'cancelVariable']) }} {{ Form::hidden('confirmVariable', __('messages.common.are_you_sure_want_to_delete_this'), ['class' => 'confirmVariable']) }} {{ Form::hidden('deletedVariable', __('messages.common.deleted'), ['class' => 'deletedVariable']) }} {{ Form::hidden('hasBeenDeletedVariable', __('messages.common.has_been_deleted'), ['class' => 'hasBeenDeletedVariable']) }} {{-- Opd Presciption details--}} {{Form::hidden('uniqueId',2,['id'=>'showOpdUniqueId'])}} {{Form::hidden('medicineCategories',json_encode($medicineCategoriesList),['id'=>'showOpdMedicineCategories'])}} {{Form::hidden('opdDuration',json_encode($doseDurationList),['class'=>'opdPrescriptionDurations'])}} {{Form::hidden('opdInterval',json_encode($doseIntervalList),['class'=>'opdPrescriptionIntervals'])}} {{Form::hidden('medicinesListUrl',route('opd.medicine.list'),['id'=>'showOpdMedicinesListUrl'])}} {{Form::hidden('opddMeals',json_encode($mealList),['class'=>'opdPrescriptionMeals'])}} {{-- Opd Presciption create url --}} {{ Form::hidden('OpdPrescriptionUrl', route('opd.prescription.index'), ['id' => 'showOpdPrescriptionUrl']) }} {{Form::hidden('OpdPrescriptionCreateUrl',route('opd.prescription.store'),['id'=>'showOpdPrescriptionCreateUrl'])}} {{Form::hidden('opd_prescription',__('messages.ipd_prescription'),['id'=>'opdPrescription'])}}
@include('flash::message')
@include('opd_patient_departments.show_fields') @include('opd_diagnoses.add_modal') @include('opd_diagnoses.edit_modal') @include('opd_diagnoses.templates.templates') @include('opd_patient_departments.templates.templates') @include('opd_timelines.add_modal') @include('opd_timelines.edit_modal') {{-- Opd Presciption details --}} @include('opd_prescriptions.add_model') @include('opd_prescriptions.edit_model') @include('opd_prescriptions.templates.templates') @include('opd_prescriptions.show_modal')
@endsection @section('scripts') {{-- assets/js/opd_tab_active/opd_tab_active.js --}} {{-- assets/js/opd_patients/visits.js --}} {{-- assets/js/opd_diagnosis/opd_diagnosis.js --}} {{-- assets/js/opd_timelines/opd_timelines.js --}} @endsection