@php
$th_col = ["no","nim","nama","kode_kelas","kode_akt","kode_jur","status"];
$th_width = ["3%","17%","40%","10%","10%","10%","10%"];
@endphp
@for ($c=0; $c < count($th_col); $c++)
@php
$col = str_replace("_"," ",$th_col[$c]);
$col = ucwords($col);
@endphp
@endfor
@php
$no=$start + 1;
@endphp
@for($x=0; $x < count($data); $x++)
@php
$line2 = $data[$x];
@endphp
@for ($c=0; $c < count($th_col); $c++)
{{ $line2[$th_col[$c]] }}
|
@endfor
@php
$no++;
@endphp
@endfor