@extends('admin.layouts.app') @section('title', 'Combined Dashboard') @section('content')

Dashboard

Welcome to your admin dashboard

Total Products

{{ $totalProducts }}

Total Orders

{{ $totalOrders }}

Total Revenue

${{ number_format($totalRevenue, 2) }}

Total Customers

{{ $totalCustomers }}

Total Sales (Last 30 Days)

$0.00

New Customers (Last 30 Days)

0

Top Selling Products

0

Out of Stock Items

0

Recent Orders

@foreach($recentOrders as $order) @endforeach
Order ID Customer Amount Status Date
#{{ $order->id }} {{ $order->customer ? $order->customer->name : 'Guest' }} ${{ number_format($order->total, 2) }} {{ $order->status->label() }} {{ $order->created_at->format('M d, Y') }}

Sales Overview

Top Selling Products

Product Name Category Total Sales Quantity Sold Stock

Top Customers

Customer Name Email Total Orders Total Spent Last Order

Inventory Alerts

Product Name Category Stock Price Status

Export Analysis Data

@endsection @push('scripts') @endpush