19 lines
444 B
PHP
Raw Normal View History

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