@php $items = $items ?? collect(); $type = $type ?? 'generic'; @endphp @if(($items->count() ?? 0) === 0)
لا توجد بيانات.
@else
@foreach($items as $idx => $it)
#{{ $idx+1 }} @if($type==='activities' && !empty($it->__mf_group)) • {{ $it->__mf_group }} @endif
{{ json_encode($it, JSON_PRETTY_PRINT|JSON_UNESCAPED_UNICODE) }}
@endforeach
@endif