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

Total Transactions

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

Total Volume

₦{{ number_format($totalVolume ?? 0, 2) }}

Active Escrows

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

Completed

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

Disputed

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

Revenue from Fees

₦{{ number_format($feeRevenue ?? 0, 2) }}

Quick Access

@endsection