@extends('layouts.admin') @section('title', 'Dashboard') @section('topbar-title', 'Dashboard') @section('content')
{{ $stats['total_users'] }}
Total Users
{{ $stats['active_licenses'] }}
Active Licenses
${{ number_format($stats['total_revenue'], 0) }}
Total Revenue
{{ $stats['pending_orders'] }}
Pending Orders
{{ $stats['total_products'] }}
Active Products
{{ $stats['suspended'] }}
Suspended

Recent Orders

View All
@forelse($recentOrders as $order) @empty @endforelse
InvoiceUserProductAmountStatus
{{ $order->invoice_number }} {{ $order->user->name }} {{ $order->plan->product->name }} ${{ number_format($order->amount, 2) }} {{ ucfirst($order->status) }}
No orders yet

Recent Licenses

View All
@forelse($recentLicenses as $lic) @empty @endforelse
KeyUserProductStatus
{{ substr($lic->license_key, 0, 14) }}... {{ $lic->user->name }} {{ $lic->product->name }} {{ $lic->status }}
No licenses yet
@endsection