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