{{ $reportName }}
Generated at: {{ $generatedAt }}
@if(!empty($table))
@foreach(array_keys(is_array($table[0]) ? $table[0] : (array)$table[0]) as $col)
{{ $col }}
@endforeach
@foreach($table as $row)
@foreach(is_array($row) ? $row : (array)$row as $cell)
{{ is_array($cell) || is_object($cell) ? json_encode($cell) : $cell }}
@endforeach
@endforeach
@else
No data.
@endif