Anteprima di Stampa

{{ $data['title'] ?? 'Report' }}

Generato il {{ now()->format('d/m/Y H:i') }}
@if(!empty($data['summary']))
{{ $data['summary'] }}
@endif @if(!empty($data['headers']) && !empty($data['rows'])) @foreach($data['headers'] as $header) @endforeach @foreach($data['rows'] as $row) @foreach($row as $cell) @endforeach @endforeach
{{ $header }}
{{ is_array($cell) ? json_encode($cell) : $cell }}
Totale righe: {{ count($data['rows']) }}
@else
Nessun dato disponibile per questo report.
@endif