{{ $title }}

За «{{ $day }}» {{ $month }} {{ $year }} год.

Плановые: {{ $planned['count'] }}

@foreach ($planned['patients'] as $i => $p)

{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) Д/З: {{ $p['diagnosis'] }}.@endif id = {{ $p['migration_id'] }}

@endforeach

Экстренные: {{ $urgent['count'] }}

@foreach ($urgent['patients'] as $i => $p)

{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) Д/З: {{ $p['diagnosis'] }}.@endif id = {{ $p['migration_id'] }}

@endforeach

В отделении состоит: {{ $inDepartment }}

Плановых операций: {{ $plannedOperations['count'] }}

@foreach ($plannedOperations['patients'] as $i => $p)

{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.

@endforeach

Экстренных операций: {{ $urgentOperations['count'] }}

@foreach ($urgentOperations['patients'] as $i => $p)

{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.

@endforeach

Реанимация: {{ $reanimation['count'] }}

@foreach ($reanimation['patients'] as $i => $p)

{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) {{ $p['diagnosis'] }}.@endif

@endforeach

Под наблюдением: {{ $observableCount }}

Летальные исходы: {{ $deceased['count'] > 0 ? '' : 'не было.' }}

@foreach ($deceased['patients'] as $i => $p)

{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) {{ $p['diagnosis'] }}.@endif

@endforeach
____________________________
____________________________