49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
|
<div class="box-body">
|
||
|
{!! $chart->render() !!}
|
||
|
|
||
|
<hr>
|
||
|
|
||
|
<div class="table table-responsive">
|
||
|
<table class="table table-bordered table-striped table-hover" id="tbl-report-incomes">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>{{ trans_choice('general.categories', 1) }}</th>
|
||
|
@foreach($dates as $date)
|
||
|
<th class="text-right">{{ $date }}</th>
|
||
|
@endforeach
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
@if ($incomes)
|
||
|
@foreach($incomes as $category_id => $category)
|
||
|
<tr>
|
||
|
<td>{{ $categories[$category_id] }}</td>
|
||
|
@foreach($category as $item)
|
||
|
<td class="text-right">@money($item['amount'], $item['currency_code'], true)</td>
|
||
|
@endforeach
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
@else
|
||
|
<tr>
|
||
|
<td colspan="4">
|
||
|
<h5 class="text-center">{{ trans('general.no_records') }}</h5>
|
||
|
</td>
|
||
|
</tr>
|
||
|
@endif
|
||
|
</tbody>
|
||
|
<tfoot>
|
||
|
<tr>
|
||
|
<th>{{ trans_choice('general.totals', 1) }}</th>
|
||
|
@foreach($totals as $total)
|
||
|
<th class="text-right">@money($total['amount'], $total['currency_code'], true)</th>
|
||
|
@endforeach
|
||
|
</tr>
|
||
|
</tfoot>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@push('js')
|
||
|
{!! Charts::assets() !!}
|
||
|
@endpush
|