@if(!empty($data['summary']))
{{ $data['summary'] }}
@endif
@if(!empty($data['headers']) && !empty($data['rows']))
@foreach($data['headers'] as $header)
| {{ $header }} |
@endforeach
@foreach($data['rows'] as $row)
@foreach($row as $cell)
| {{ is_array($cell) ? json_encode($cell) : $cell }} |
@endforeach
@endforeach
Totale righe: {{ count($data['rows']) }}
@else
Nessun dato disponibile per questo report.
@endif