Akaunting/resources/views/partials/reports/table/header.blade.php

14 lines
616 B
PHP
Raw Normal View History

2019-11-16 07:21:14 +00:00
<thead class="thead-light">
2020-03-09 14:17:42 +00:00
<tr class="row font-size-unset">
2020-01-16 12:39:37 +00:00
@if (($table == 'default') && !empty($class->groups))
2020-03-09 14:17:42 +00:00
<th class="{{ $class->head_column_width }}">{{ $class->groups[$class->model->settings->group] }}</th>
2019-11-16 07:21:14 +00:00
@else
2020-03-09 14:17:42 +00:00
<th class="{{ $class->head_column_width }}">{{ $table }}</th>
2019-11-16 07:21:14 +00:00
@endif
@foreach($class->dates as $date)
2020-03-10 09:31:10 +00:00
<th class="{{ $class->column_width }} text-right px-0">{{ $date }}</th>
2019-11-16 07:21:14 +00:00
@endforeach
2020-03-10 09:31:10 +00:00
<th class="{{ $class->head_column_width }} text-right">{{ trans_choice('general.totals', 1) }}</th>
2019-11-16 07:21:14 +00:00
</tr>
</thead>