@include('exports/header')
{{ $title }}
{{ $date }}
ALUMNO: {{ $studentDocumentNumber }} - {{ $studentNames }}
@foreach ($columns as $key => $column)
|
{{ $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)
|
{{ $key == 'id' ? $indexRows + 1 : $value ?? 'SIN DATOS' }}
|
@endforeach
@endforeach
NRO. DE MATRÍCULAS: {{ count($rows) }}