Analytics
Top Customer By projects
View allName
Projects
{{ $topCustomersByProject->name }}
{{ count($topCustomersByProject->projects) }}
@endforeach
Top Customer By QR Created
View allName
Qrs
{{ $topCustomersByQr->name }}
{{ count($topCustomersByQr->qrs) }}
@endforeach
Top Customer By Impression
View allName
Scan
{{ $customerImpression->name }}
{{ count($customerImpression->scannedQrs) }}
@endforeach
Top Projects
View allName
Qrs
{{ $topProject->name }}
{{ count($topProject->qrs) }}
@endforeach
Top Project By Impression
View allName
Scan
{{ $projectImpression->name }}
{{ count($projectImpression->scannedQrs) }}
@endforeach
Top Map Function By Qrs
{{-- View all --}}Name
Count
{{ $name }}
{{ $function['count'] }}
@endforeach
Countries - Top 10
@php $total = array_sum(array_column($countries, 'count')); @endphp @foreach ($countries as $country) @php $percentage = ($country['count'] / $total) * 100; @endphp{{ $country['country'] }}
({{ round($percentage, 2) }}%)
States - Top 10
@php $total = array_sum(array_column($states, 'count')); @endphp @foreach ($states as $state) @php $percentage = ($state['count'] / $total) * 100; @endphp{{ $state['state'] }}
({{ round($percentage, 2) }}%)
Cities - Top 10
@php $total = array_sum(array_column($cities, 'count')); @endphp @foreach ($cities as $city) @php $percentage = ($city['count'] / $total) * 100; @endphp{{ $city['city'] }}
({{ round($percentage, 2) }}%)