{{ $name ?? 'Report' }}
@foreach(($columns ?? []) as $col)
{{ $col['label'] ?? $col['key'] }}
@endforeach
@php $keys = array_map(fn($c) => $c['key'], ($columns ?? [])); @endphp @foreach(($rows ?? []) as $row)
@foreach($keys as $k)
{{ data_get($row, $k) }}
@endforeach
@endforeach