{{ __('basic.examination') }} {{ __('basic.medicines') }}
Dropdown Header:
{{ __('patientappo.new examination') }}
@if (count($patient->diseases) > 0)
{{ __('basic.examination') }}

{{ $patient->diseases[0]->diseasecats->name }}

{{ __('patientappo.started on') }}

{{ date('d M Y', strtotime($patient->diseases[0]->start)) }}

@if ($patient->diseases[0]->status == 0) @php $msg = __('patientappo.still'); @endphp @elseif ($patient->diseases[0]->status == 1) @php $msg = __('patientappo.healed'); @endphp @endif
{{ __('basic.status') }}

{{ $msg }}

@else

You can put your Examination

@endif
{{ __('basic.more') }}
{{ __('basic.medicines') }} {{ __('basic.examination') }}
Dropdown Header:
{{ __('patientappo.add medicine') }}
@if (!$patient->prescriptions->isEmpty())
@foreach ($patient->prescriptions as $item) @if ($item->status == 0) @php $text_color = 'main-color'; $msg = __('patientappo.on medicine'); @endphp @elseif ($item->status == 1) @php $text_color = 'cancel-color'; $msg = __('patientappo.no result'); @endphp @elseif ($item->status == 2) @php $text_color = 'done-color'; $msg = __('patientappo.done'); @endphp @endif {{-- blade-formatter-disable-next-line --}} @break($loop->index === 3)

{{ $item->medicinescats->name }}

{{ $msg }}

{{ date('d M Y', strtotime($item->end)) }}
@endforeach
@else

{{ __('patientappo.you can add new medicines') }}

@endif
{{ __('basic.more') }}
{{ __('basic.examination') }}
Initial Examination
@if (!empty($patient->disease_draws[0]->front)) @else
{{ __('patientappo.no back draw') }}
@endif
@if (!empty($patient->disease_draws[0]->back)) @else
{{ __('patientappo.no front draw') }}
@endif
{{ __('patientappo.last examination info') }}
@if (!empty($patient->disease_draws[0]->note)) {{ $patient->disease_draws[0]->note }} @else No Note @endif
@if (!empty($patient->disease_draws[0]->appointment->start_at)) {{ $patient->disease_draws[0]->appointment->start_at }} @else {{ __('basic.not selected') }} @endif
@if (!empty($patient->disease_draws[0]->appointment->doctor->name)) {{ $patient->disease_draws[0]->appointment->doctor->name }} @else {{ __('basic.not selected') }} @endif
@foreach ($patient->diseases as $item) @if ($item->status == 0) @php $text_color = 'active-color-btn'; $msg = __('patientappo.still'); @endphp @elseif ($item->status == 1) @php $text_color = 'done-color-btn'; $msg = __('patientappo.healed'); @endphp @endif @endforeach
{{ __('basic.name') }} {{ __('basic.start') }} {{ __('basic.end') }} {{ __('basic.status') }} {{ __('basic.handle') }}
{{ $item->diseasecats->name }} {{ $item->start }} {{ $item->end }} {{ $msg }} {{ __('basic.edit') }} {{ __('basic.delete') }}
{{ method_field('POST') }} {{ csrf_field() }}
{{ __('patientappo.new examination') }}
@error('disease_cat') {{ $message }} @enderror
@error('disease_start') {{ $message }} @enderror
@error('last_appointment_id') {{ $message }} @enderror
Update Examination
@csrf @method('PUT')
@error('disease_cat_update') {{ $message }} @enderror
@error('status_disease_update') {{ $message }} @enderror
@error('disease_start_update') {{ $message }} @enderror
@error('disease_end_update') {{ $message }} @enderror
Disease delete
{{ method_field('delete') }} {{ csrf_field() }}

ِAre you sure you want to delete this examination?


{{ __('patientappo.current medicines') }}
@foreach ($patient->prescriptions as $item) @if ($item->status == 0) @php $text_color = 'active-color-btn'; $msg = __('patientappo.on medicine'); @endphp @elseif ($item->status == 1) @php $text_color = 'cancel-color-btn'; $msg = __('patientappo.no result'); @endphp @elseif ($item->status == 2) @php $text_color = 'done-color-btn'; $msg = __('patientappo.done'); @endphp @endif @endforeach
{{ __('basic.name') }} {{ __('basic.start') }} {{ __('basic.end') }} {{ __('basic.status') }} {{ __('basic.handle') }}
{{ $item->medicinescats->name }} {{ $item->start }} {{ $item->end }} {{ $msg }} {{ __('basic.edit') }} {{ __('basic.delete') }}
{{ __('patientappo.add new medicines') }}
{{ method_field('POST') }} {{ csrf_field() }}
{{ __('basic.name') }} {{ __('basic.status') }} {{ __('basic.from') }} {{ __('basic.to') }}

You have to add new medicines
@error('medicine_pills') {{ $message }} @enderror
@error('medicine_status') {{ $message }} @enderror
@error('medicine_start') {{ $message }} @enderror
@error('medicine_end') {{ $message }} @enderror
@error('last_appointment_id') {{ $message }} @enderror
{{ __('patientappo.update medicines') }}
@csrf @method('PUT')
@error('medicine_pills_update') {{ $message }} @enderror
@error('status_update_update') {{ $message }} @enderror
@error('medicine_start_update') {{ $message }} @enderror
@error('medicine_end_update') {{ $message }} @enderror
Medicine delete
{{ method_field('delete') }} {{ csrf_field() }}

ِAre you sure you want to delete this medicine?