@extends('layouts.app') @section('content')

Dashboard

Analytics with server-side filters
@foreach([ 'Total Customers' => $widgets['total_customers'], 'States' => $widgets['states_count'], 'Cities' => $widgets['cities_count'], 'Companies' => $widgets['companies_count'], 'Designations' => $widgets['designations_count'], ] as $label => $value)
{{ $label }}
{{ $value }}
@endforeach
State Distribution
Tag Distribution
Top Cities
@forelse($cities as $row)@empty @endforelse
CityCount
{{ $row->city }}{{ $row->total }}
No data
Top Sources
@forelse($sources as $row)@empty @endforelse
SourceCount
{{ $row->source }}{{ $row->total }}
No data
@endsection @push('scripts') @endpush