{{ $title ?? 'Export' }}
{{ now()->format('Y-m-d H:i:s') }}
@foreach (($headers ?? []) as $h)
{{ $h }}
@endforeach
@foreach (($rows ?? []) as $row)
@foreach ($row as $cell)
{{ is_array($cell) ? json_encode($cell, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES) : $cell }}
@endforeach
@endforeach