{{ $Dataitems['patient_number'] }} |
@php
$phase = getDozePhaseByPatient($Dataitems['patient_id']);
@endphp
@foreach ($phase as $items)
{{ $items['phase_name'] }} |
@endforeach
|
@php
$dozeList = getDosageListByPatient($Dataitems['patient_id']);
@endphp
@foreach ($dozeList as $items)
{{ $items['medicine_name'] }} |
@endforeach
|
@foreach ($dozeList as $items)
{{ $items['start'] }} |
@endforeach
|
@foreach ($dozeList as $items)
{{ \Carbon\Carbon::parse($items['end'])->format('d-m-Y') }} |
@endforeach
|
@foreach ($dozeList as $items)
{{ $items['total_med_per_day'] }} |
@endforeach
|
@foreach ($dozeList as $items)
{{ $items['total_days'] }} |
@endforeach
|
@if($phase)
@foreach ($phase as $items)
@if($items['status'] == false)
Is completed?
|
@elseif($items['status'] == true)
{{ __('completed!') }} |
@endif
@endforeach
@endif
|
@endif
@endforeach
@endif