@extends('layouts.main') @section('title', 'Dashboard') @section('content') @push('head') @endpush
Admin Dashboard
Real-time overview of all platform activity
{{ now()->format('M d, Y') }}
Live
Coin Distribution
🪙
{{ number_format($today_coins ?? 0) }}
Today's Coins Distributed
Coins awarded today
💰
{{ number_format($total_coins ?? 0) }}
Total Coins Distributed
All-time lifetime awards
💸
{{ number_format($total_payout ?? 0) }}
Total Payout Distributed in Coins
Lifetime disbursements
{{ number_format($pending_payout ?? 0) }}
Pending Payout in Coins
Awaiting disbursement
Core Metrics
↑ Active
{{ number_format($user) }}
Total Users
All time
{{ number_format($transaction) }}
Total Transactions
Pending
{{ number_format($pending) }}
Pending Payments
Paid
{{ number_format($complete) }}
Completed Payments
Earning
${{ $offerwall_income[0]->income }}
Offerwall Earning
Content
{{ number_format($video) }}
Videos
Links
{{ number_format($weblink) }}
Websites
Options
{{ number_format($redeem) }}
Rewards Options
Active Users
Today Active
{{ number_format($today) }}
This Week Active
{{ number_format($week) }}
This Month Active
{{ number_format($month) }}
New Signups Today
{{ number_format($new_today ?? 0) }}
Today Task Completions
Task Completion Count
How many task completed today
@for($i = 0; $i < 7; $i++)
@endfor
Analytics
Users Analysis
Monthly new user registrations this year
Quick Summary
Lifetime platform totals
@php $summary = [ ['label'=>'Total Users', 'val'=> number_format($user), 'color'=>'#3b7dff'], ['label'=>'Transactions', 'val'=> number_format($transaction), 'color'=>'#f7295a'], ['label'=>'Pending Payments', 'val'=> number_format($pending), 'color'=>'#f59e0b'], ['label'=>'Completed', 'val'=> number_format($complete), 'color'=>'#10b981'], ['label'=>'Videos', 'val'=> number_format($video), 'color'=>'#7c4dff'], ['label'=>'Websites', 'val'=> number_format($weblink), 'color'=>'#00bfa5'], ['label'=>'Rewards Options', 'val'=> number_format($redeem), 'color'=>'#f97316'], ]; @endphp @foreach($summary as $s)
{{ $s['label'] }}
{{ $s['val'] }}
@endforeach
@push('script') @endpush @endsection