@php $firstCase = null; @endphp
@foreach ($categories as $category => $cases)
@php $isFirstCategory = $loop->first; @endphp
@endforeach
@foreach ($cases as $case)
@php
if ($isFirstCategory && $loop->first) {
$firstCase = $case;
}
@endphp
@endforeach
#{{ $case->identifier != ""? $case->identifier : __('label.unknown') }}
{{ $case->name }}
{{ $case->note }}
@php $assets = $case->getMedia('files');@endphp
@if (isset($assets) && $assets->count() > 0)
{!! get_grid_formatted_assets($assets) !!}
@endif
{{ __('title.lbl_attachments') }} ({{ $assets->count() }})
-
@foreach ($case->readers as $reader)
@include('dailyupdate::readers.cases', [
'reader' => $reader,
])
@endforeach