@extends("admin.layouts.app") @section("title", $title) @section("content")

{{ $title }}

{{ $description ?? '' }}

@if($canExport && count($rows) > 0) {{ __('admin.reports.export_csv') }} @endif {{ __("admin.nav.back") }}
@if($hasDateFilter)
@endif
@if(count($rows) > 0) @foreach($columns as $col) @endforeach @foreach($rows as $row) @php $values = is_object($row) ? array_values((array)$row) : array_values($row); @endphp @foreach($values as $val) @endforeach @endforeach @if($totals) @foreach($totals as $t) @endforeach @endif
{{ $col }}
@if(is_numeric($val) && $val > 100 && !str_contains((string)$val, '-')) {{ number_format((float)$val, 2) }} @else {{ $val }} @endif
@if(is_numeric($t) && $t > 100){{ number_format((float)$t, 2) }}@else{{ $t }}@endif
@else

{{ __("admin.no_results") }}

@endif
Showing {{ count($rows) }} row(s) · Generated {{ now()->format('Y-m-d H:i') }}
@endsection