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

@yield('title')

{{ __('messages.ipd_patient_prescription.print_prescription') }} @php $medicineBill = App\Models\MedicineBill::whereModelType('App\Models\Prescription')->whereModelId( $prescription['prescription']->id)->first(); @endphp @if(isset($medicineBill->payment_status) && $medicineBill->payment_status == false) {{ __('messages.common.edit') }} @endif {{ __('messages.common.back') }}
@endsection @section('content')
@include('flash::message')
@include('prescriptions.show_fields_with_medicine')
@endsection