Akaunting/resources/views/components/reports/summary.blade.php

18 lines
440 B
PHP
Raw Normal View History

2022-06-17 08:41:48 +00:00
@php
$is_print = request()->routeIs('reports.print');
@endphp
2022-06-01 07:15:55 +00:00
@include($class->views['summary.content.header'])
@foreach($class->tables as $table_key => $table_name)
2022-08-18 16:52:45 +00:00
<div class="flex flex-col lg:flex-row mt-12">
2022-06-01 07:15:55 +00:00
@include($class->views['summary.table'])
2022-06-17 08:41:48 +00:00
@if (! $is_print)
@include($class->views['summary.chart'])
@endif
2022-06-01 07:15:55 +00:00
</div>
@endforeach
@include($class->views['summary.content.footer'])