Total QR Scans
{{ $totalQrScans }}
No of project
{{ $totalQrProjects }}
Total Registered QR's
{{ $totalRegisterQrs }}
Customer Details
Name
{{ $customer->name }}
Country Origin
{{ $customer->country_origin ?? '' }}
Industry
{{ $customer->industry ?? '' }}
Description
{{ $customer->pdescription ?? '' }}
Top Project by QR
Name
Qr
@foreach ($topProjectsByQr as $key => $topProject)
{{ $topProject->name }}
{{ $topProject->total_qr_count ?? '' }}
@endforeach
Top Project by Impression
Name
Scan
@foreach ($topProjectsByImpression as $key => $topProjectImpression)
{{ $topProjectImpression->name }}
{{ $topProject->scannedQrs->count() }}
@endforeach
Top Map Function by Qr
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['name'] }}
({{ 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['name'] }}
({{ 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['name'] }}
({{ round($percentage, 2) }}%)
| S.No | Name | Role | Total Project | Total Function Use | Latest Scan Time | Send Mail | Status | Action | |
|---|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $customerUser->name }} | {{ $customerUser->email }} | {{ $customerUser->role->name }} | {{ count($customerUser->projects) }} | {{ $customerUser->qrs->whereNotNull('type')->pluck('type')->unique()->count() }} | @php $latestQr = $customerUser ->qrs() ->whereNotNull('type') ->orderBy('updated_at', 'desc') ->first(); @endphp {{ $latestQr ? $latestQr->updated_at : '-' }} |