@extends('layouts.app')
@section('title','Admin Dashboard')
@section('content')
Total Users
{{ $totals['users'] }}
Stage Pool
N${{ number_format($totals['stage_pool'],2) }}
Pending Withdrawals
N${{ number_format($totals['pending_withdrawals'],2) }}
Recent Commissions
@foreach($recent as $c)
- {{ $c->type }} @if($c->user_id) (UID:{{ $c->user_id }}) @endifN${{ number_format($c->amount,2) }}
@endforeach
@endsection