@extends('backEnd.layouts.master') @section('title', 'Customers in Map') @push('styles') @endpush @section('content')

Customers in Map

Customer Management — location wise customer overview
My Customers
Showing {{ number_format($totalLocations) }} location{{ $totalLocations === 1 ? '' : 's' }}
TOTAL LOCATIONS
{{ number_format($totalLocations) }}
TOTAL CUSTOMERS
{{ number_format($totalCustomers) }}
AVG SCORE
{{ $avgScore }}%
TOTAL SUCCESS
{{ number_format($totalSuccess) }}
Location wise Customer Details
@forelse($rows as $row) @empty @endforelse
Location Customer Count Average Score Total Success Total Cancel Action
{{ $row['location'] }} {{ number_format($row['customer_count']) }} {{ $row['avg_score'] }}% {{ number_format($row['total_success']) }} {{ number_format($row['total_cancel']) }} View Details
No location data yet. Run Convert Customers from My Customers page.
@endsection @push('scripts') @endpush