@extends('layouts.admin') @section('title', 'Admin Dashboard') @section('heading', 'Dashboard') @push('styles') @endpush @section('toolbar') Add Product @endsection @section('content')
Products
{{ $productCount }}
Orders
{{ $orderCount }}
Pending Orders
{{ $pendingCount }}
Sales Total
${{ number_format($salesTotal, 2) }}

Recent Orders

@forelse ($recentOrders as $order) @empty @endforelse
Order Customer Status Total
{{ $order->order_number }} {{ $order->customer_name }} {{ ucfirst($order->status) }} ${{ number_format((float) $order->total_amount, 2) }} Open
No orders yet.
@endsection