19 lines
814 B
PHP
Raw Normal View History

2022-11-02 12:55:48 +03:00
<div class="overflow-x-scroll large-overflow-unset my-8">
<table class="w-full small-table-width rp-border-collapse">
2022-06-01 10:15:55 +03:00
<thead>
<tr>
<th class="{{ $class->column_name_width }} w-24 print-alignment">&nbsp;</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>
2022-06-01 10:15:55 +03:00
</div>