@foreach($tables as $index => $table)
{{ $table['title'] }}
@foreach($table['columns'] as $column) @endforeach @forelse($table['rows'] as $row) @foreach($table['columns'] as $column) @endforeach @empty @endforelse
{{ $column['label'] }}
@if($column['type'] === 'currency') ${{ number_format($row[$column['id']] ?? 0, 2) }} @elseif($column['type'] === 'number') {{ number_format($row[$column['id']] ?? 0) }} @elseif($column['type'] === 'date') {{ $row[$column['id']] ? \Carbon\Carbon::parse($row[$column['id']])->format('M j, Y') : '' }} @else {{ $row[$column['id']] ?? '' }} @endif
No data found for this report
@endforeach