2022-06-01 10:15:55 +03:00
|
|
|
<div class="overflow-x-visible my-8">
|
|
|
|
<table class="w-full">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2022-06-06 11:10:17 +03:00
|
|
|
<th class="{{ $class->column_name_width }} w-24 print-alignment"> </th>
|
2022-06-01 10:15:55 +03:00
|
|
|
|
2019-11-16 10:21:14 +03:00
|
|
|
@foreach($class->dates as $date)
|
2022-06-01 10:15:55 +03:00
|
|
|
<th class="{{ $class->column_value_width }} ltr:text-right rtl:text-left text-purple font-medium text-xs uppercase print-alignment">
|
|
|
|
{{ $date }}
|
|
|
|
</th>
|
2019-11-16 10:21:14 +03:00
|
|
|
@endforeach
|
2022-06-01 10:15:55 +03:00
|
|
|
|
|
|
|
<th class="{{ $class->column_name_width }} ltr:text-right rtl:text-left text-purple font-medium text-xs uppercase print-alignment">
|
|
|
|
{{ trans_choice('general.totals', 1) }}
|
|
|
|
</th>
|
2019-11-16 10:21:14 +03:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
</div>
|