@extends('admin.layout') @section('page-title', 'Reports Overview') @section('content')
View comprehensive business reports and analytics
Today's Revenue
${{ number_format($stats['today_revenue'], 2) }}
Effective (after discounts)
This Month Revenue
${{ number_format($stats['month_revenue'], 2) }}
@if($stats['last_month_revenue'] > 0) @php $change = (($stats['month_revenue'] - $stats['last_month_revenue']) / $stats['last_month_revenue']) * 100; @endphp{{ $change >= 0 ? '+' : '' }}{{ number_format($change, 1) }}% vs last month
@endifThis Month Expenses
${{ number_format($stats['month_expenses'], 2) }}
@if($stats['last_month_expenses'] > 0) @php $change = (($stats['month_expenses'] - $stats['last_month_expenses']) / $stats['last_month_expenses']) * 100; @endphp{{ $change >= 0 ? '+' : '' }}{{ number_format($change, 1) }}% vs last month
@endifNet Profit (This Month)
${{ number_format($stats['month_revenue'] - $stats['month_expenses'], 2) }}
@if($stats['month_revenue'] > 0)Margin: {{ number_format((($stats['month_revenue'] - $stats['month_expenses']) / $stats['month_revenue']) * 100, 1) }}%
@endifHold Account Balance
${{ number_format($stats['total_hold_account_balance'], 2) }}
Total across all accounts
Total Transactions
{{ number_format($stats['total_transactions']) }}
{{ number_format($stats['today_transactions']) }} today
Payment Issues
{{ $stats['overpaid_orders'] + $stats['underpaid_orders'] }}
{{ $stats['overpaid_orders'] }} overpaid, {{ $stats['underpaid_orders'] }} underpaid
Total Orders
{{ number_format($stats['total_orders']) }}
{{ number_format($stats['pending_orders']) }} pending