{{ __('Dashboard') }}

Total Orders
{{ $totalOrders }}
@if($orderGrowth > 0) +{{ number_format($orderGrowth, 1) }}% @endif
Total Revenue
{{ config('custom.currency_symbol') }} {{ number_format($totalRevenue, 2) }}
@if($revenueGrowth > 0) +{{ number_format($revenueGrowth, 1) }}% @endif
Pending Orders
{{ $pendingOrders }}
Wallet Balance
{{ config('custom.currency_symbol') }} {{ number_format($walletBalance, 2) }}

Revenue Overview

Orders Overview

Average Order Value

{{ config('custom.currency_symbol') }} {{ number_format($averageOrderValue, 2) }}
Last 30 days

Conversion Rate

{{ number_format($conversionRate, 1) }}%
Orders / Total Customers

Top Selling Product

@if($topProduct)
{{ $topProduct->name }}
{{ $topProduct->total_sold }} units sold
@else
No data available
@endif

Recent Orders

@forelse($recentOrders as $order) @empty @endforelse
Invoice No Customer Amount Status
{{ $order->invoice_no ?? 'N/A' }}
#{{ $order->id }}
{{ $order->customer->name }} {{ config('custom.currency_symbol') }} {{ number_format($order->total_amount, 2) }} {{ ucfirst($order->status) }}
No recent orders

Recent Transactions

@forelse($recentTransactions as $transaction) @empty @endforelse
Date Type Amount Status
{{ $transaction->created_at->format('M d, Y') }} {{ ucfirst($transaction->type) }} {{ config('custom.currency_symbol') }} {{ number_format($transaction->amount, 2) }} {{ $transaction->status }}
No recent transactions
@push('scripts') @endpush