@include('exports/header')

{{ $title }}


@foreach ($classroomColumns as $key => $column) @endforeach
{{ $column }} {{ $classroomRows[$key] ?? '-' }}
@foreach ($columns as $key => $column) @endforeach @php $rows = array_map(function ($row) use ($columns) { $row = array_intersect_key($row, $columns); return array_merge($columns, $row); }, $rows); @endphp @foreach ($rows as $indexRows => $row) @foreach ($row as $key => $value) @endforeach @endforeach
{{ $column }}
@if ($key == 'id') {{ $indexRows + 1 }} @elseif($key == 'date' || $key == 'date_limit') {{ \Carbon\Carbon::parse($value)->format('d/m/Y H:i') }} @else {{ $value ?? '-' }} @endif