{{ ucfirst($table) }} Report
@foreach (array_chunk($data, 50) as $chunk)
@foreach ($columns as $col)
{{ ucfirst(str_replace('_', ' ', $col)) }}
@endforeach
@foreach ($chunk as $row)
@foreach ($columns as $col)
{{ $row[$col] ?? '' }}
@endforeach
@endforeach
@endforeach