14 lines
412 B
PHP
Raw Normal View History

2019-11-16 10:21:14 +03:00
<thead class="thead-light">
<tr>
@if ($table == 'default')
<th>{{ $class->groups[$class->report->group] }}</th>
@else
2020-01-14 14:47:05 +03:00
<th>{{ $table }}</th>
2019-11-16 10:21:14 +03:00
@endif
@foreach($class->dates as $date)
2020-01-14 14:47:05 +03:00
<th class="text-right px-0">{{ $date }}</th>
2019-11-16 10:21:14 +03:00
@endforeach
2020-01-13 17:15:54 +03:00
<th class="text-right">{{ trans_choice('general.totals', 1) }}</th>
2019-11-16 10:21:14 +03:00
</tr>
</thead>