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

Welcome back, {{ Auth::user()->name }}!

Manage your business operations with precision and style.

Total Products

{{ $stats['products'] }}

Total Services

{{ $stats['services'] }}

Total Orders

{{ $stats['orders'] }}

Blog Posts

{{ $stats['blogs'] }}

Total Images

{{ $stats['images'] }}

Recent Orders

View All
@forelse($recentOrders as $order) @empty @endforelse
Order ID Customer Date Total Amout Status Action
#{{ $order->id }}
{{ $order->customer_name }} {{ $order->email }}
{{ $order->created_at->format('M d, Y') }} PKR {{ number_format($order->total_amount, 2) }} {{ strtoupper($order->status) }}
No recent orders found.
@endsection @section('styles') @endsection