@php $generalSetting = App\Models\GeneralSetting::first(); $logoPath = public_path('admin/Image/AppSettings/Logo/' . $generalSetting->system_logo); $logoData = base64_encode(file_get_contents($logoPath)); $logoSrc = 'data:image/' . pathinfo($logoPath, PATHINFO_EXTENSION) . ';base64,' . $logoData; @endphp Detailed Report

Detailed Report

@php $a = 1; @endphp @foreach ($reportData as $country => $cities) @foreach ($cities as $city => $totalSum) @php $a++; @endphp @endforeach @endforeach
# {{ translate('Country') }} {{ translate('City') }} {{ translate('Sum') }}
{{ $a }} {{ $country }} {{ $city }} {{formatCurrency($totalSum, $currency) }}