@extends('admin.layouts.dashboard') @section('title', 'Admin Dashboard') @section('content') @php $stats = [ ['label' => 'Total Members', 'value' => '100,240', 'sub' => '+1,247 this month'], ['label' => 'Active Partners', 'value' => '523', 'sub' => '+12 new this month'], ['label' => 'Total Redemptions', 'value' => '48,920', 'sub' => '+3,456 this month'], ['label' => 'Monthly Revenue', 'value' => 'Rs. 8.2M', 'sub' => '+18% vs last month'], ]; $secondaryStats = [ ['label' => 'Pending Partner Applications', 'value' => '14', 'icon' => 'alert-triangle', 'color' => 'text-amber-500'], ['label' => 'Expiring Memberships (30d)', 'value' => '892', 'icon' => 'users', 'color' => 'text-blue-400'], ['label' => 'Active Offers', 'value' => '1,847', 'icon' => 'tag', 'color' => 'text-green-400'], ]; @endphp

Dashboard

Welcome back, Admin. Here's what's happening today.

@foreach ($stats as $item)

{{ $item['label'] }}

{{ $item['value'] }}

{{ $item['sub'] }}

@endforeach
@foreach ($secondaryStats as $item)

{{ $item['value'] }}

{{ $item['label'] }}

@endforeach

Recent Members

View All Members
Use the Members page for full member management table.

Recent Partner Applications

View All
Use the Partners page to review and approve/reject applications.

Recent Activity

New member registration: Kasun Perera

Partner offer approved: Hilton Colombo

Membership renewal: ID #8821

System Health

API Status: Operational

Payment Gateway: Operational

Email Service: Operational

@endsection