@extends('admin.layout') @section('title', 'Admin Dashboard') @section('content')
Welcome back! Here's what's happening with your store today.
Total Orders
{{ $totalOrders }}
Total Products
{{ $totalProducts }}
Total Users
{{ $totalUsers }}
Total Revenue
${{ number_format($totalRevenue, 2) }}
| Order # | Customer | Date | Status | Amount |
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->user->name ?? 'N/A' }} | {{ $order->created_at->format('M d') }} | {{ ucfirst($order->status) }} | ${{ number_format($order->total, 2) }} |
| No recent orders found | ||||
| Product | Quantity | Price | Status |
|---|---|---|---|
|
{{ $product->name }}
|
{{ $product->total_sold ?? 0 }} | ${{ number_format($product->price, 2) }} | {{ $product->is_active ? 'Active' : 'Inactive' }} |
| No top selling products found | |||