@extends('layouts.master') @section('title', 'Agent Analytics - HomesInKerala') @section('content')

Analytics

Track listing, lead and conversion performance.

@include('frontend.agent.partials.nav')

Properties by Status

@forelse($propertyStatus as $status => $total)
{{ Str::headline($status) }} {{ $total }}
@empty

No property data yet.

@endforelse

Leads by Status

@forelse($leadStatus as $status => $total)
{{ Str::headline($status) }} {{ $total }}
@empty

No lead data yet.

@endforelse

Monthly Leads

@forelse($monthlyLeads as $month => $total)
{{ $month }} {{ $total }}
@empty

No monthly leads yet.

@endforelse

Monthly Listings

@forelse($monthlyProperties as $month => $total)
{{ $month }} {{ $total }}
@empty

No monthly listings yet.

@endforelse
@endsection