@extends('app') @section('content') Add Discharge Home Indoor Add Discharge @can('diagnostic-test-view') Discharge List @endcan {{csrf_field()}} From To Doctor {!! Form::select('doctor_id', $doctors ,$discharge->doctor_id??null, ['class'=> 'form-control select2','placeholder'=> 'Please Select Doctor']) !!} Duty Doctor {!! Form::select('duty_doctor_id', $doctors ,$discharge->duty_doctor_id??null, ['class'=> 'form-control select2','placeholder'=> 'Please Select Doctor']) !!} Duty Nurse {!! Form::select('duty_nurse_id', $nurses ,$discharge->duty_nurse_id??null, ['class'=> 'form-control select2','placeholder'=> 'Please Select Nurse']) !!} Patient {!! Form::select('patient_id', $patients ,$patientInfo->user_id??null, ['class'=> 'form-control select2','placeholder'=> 'Please Select Patient']) !!} @isset($patientInfo) Patient Father Name Patient Age Patient Blood Group {!! Form::select('blood_group', bloodGroups() ,$patientInfo->blood_group, ['class'=> 'form-control','placeholder'=> 'Please Select Blood Group']) !!} Address Phone Number @endisset Findings {{$discharge->findings??""}} Patient History {{$discharge->patient_history??""}} Investigation {{$discharge->investigation??""}} Treatment under admission {{$discharge->treatment_under_admission??""}} Post treatment and advice {{$discharge->post_treatment_and_advice??""}} Status {!! Form::select('status', [ '0'=>'Not Released', '1'=>'Released', ] ,$discharge->status??0, ['class'=> 'form-control select2','placeholder'=> 'Please Select Doctor']) !!} Release Date @endsection @section('script') @endsection