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

Dashboard

@foreach([ 'Total Products' => $stats['total_products'], 'Total Orders' => $stats['total_orders'], 'Categories' => $stats['total_categories'], 'Revenue (delivered)' => '৳'.number_format($stats['total_revenue'], 2), 'Pending Orders' => $stats['pending_orders'], 'Incomplete Orders' => $stats['incomplete_orders'], 'Unread Contacts' => $stats['unread_contacts'], ] as $label => $value)
{{ $label }}
{{ $value }}
@endforeach

Recent Orders

@foreach($recentOrders as $order) @endforeach
Order #CustomerTotalStatus
{{ $order->order_number }} {{ $order->customer_name }} ৳{{ number_format($order->total, 2) }} {{ $order->status }}
@endsection