@extends('layouts.admin') @section('title', 'Inventory Overview') @push('styles') @endpush @section('content')

Total Tenants

{{ number_format($totalTenants ?? 0) }}

Total Products

{{ number_format($totalProducts ?? 0) }}

Total Orders

{{ number_format($totalOrders ?? 0) }}

Revenue

₦{{ number_format($inventoryRevenue ?? 0, 2) }}
@isset($phaseThreeStats)

Channel Activity (Phase 3)

WhatsApp Conversations

{{ number_format($phaseThreeStats['whatsapp_conversations']) }}
{{ $phaseThreeStats['whatsapp_active_today'] }} active today

USSD Sessions

{{ number_format($phaseThreeStats['ussd_sessions']) }}
{{ $phaseThreeStats['ussd_active_today'] }} active today

SMS Campaigns

{{ number_format($phaseThreeStats['sms_campaigns']) }}
{{ number_format($phaseThreeStats['sms_sent_total']) }} SMS delivered

Escrow-Protected Orders

{{ number_format($phaseThreeStats['escrow_linked_orders']) }}
{{ $phaseThreeStats['currency_rates'] }} currency rates stored
@endisset

Tenants by Plan

{{ $planCounts['free'] ?? 0 }}
Free
{{ $planCounts['starter'] ?? 0 }}
Starter
{{ $planCounts['growth'] ?? 0 }}
Growth
{{ $planCounts['pro'] ?? 0 }}
Pro
@endsection