14 lines
449 B
PHP
14 lines
449 B
PHP
<thead class="thead-light">
|
|
<tr>
|
|
@if (($table == 'default') && !empty($class->groups))
|
|
<th>{{ $class->groups[$class->model->settings->group] }}</th>
|
|
@else
|
|
<th>{{ $table }}</th>
|
|
@endif
|
|
@foreach($class->dates as $date)
|
|
<th class="text-right px-0">{{ $date }}</th>
|
|
@endforeach
|
|
<th class="text-right">{{ trans_choice('general.totals', 1) }}</th>
|
|
</tr>
|
|
</thead>
|