@extends('admin::excel.summary_header')
@section('content')
@foreach(array_values($titles) as $col)
{{ $col }} |
@endforeach
@foreach($rows as $row)
@foreach($row as $value)
{{ $value }} |
@endforeach
@endforeach
@stop
@section('title')
{{ $reportTitle ?? 'Data Summary' }}
@stop