Financial Revenue Report

Period: {{ $date_from ?? 'All Time' }} to {{ $date_to ?? date('Y-m-d') }}

Summary Analytics

Type Total Revenue
Subscriptions BHD {{ number_format($summary->subscription_revenue ?? 0, 2) }}
Promotions BHD {{ number_format($summary->promotion_revenue ?? 0, 2) }}
Supplier Transactions BHD {{ number_format($summary->supplier_revenue ?? 0, 2) }}
Commissions BHD {{ number_format($summary->commission_revenue ?? 0, 2) }}
TOTAL PLATFORM REVENUE BHD {{ number_format($summary->total_revenue ?? 0, 2) }}

Transaction Detail

@foreach($transactions as $t) @endforeach
Ref # User / Entity Type Amount Status Date
{{ $t->transaction_number }} {{ $t->user->name ?? 'N/A' }} {{ ucfirst(str_replace('_', ' ', $t->type)) }} BHD {{ number_format($t->amount, 2) }} {{ ucfirst($t->status) }} {{ $t->created_at->format('Y-m-d') }}