@extends('admin.layouts.app') @section('title', 'Admin Dashboard') @section('header_title', 'Overview Dashboard') @section('content')
Welcome Back

Hello, {{ Auth::user()->name ?? 'Administrator' }} 👋

Here is your live e-commerce overview for Dwaraka Collection. Monitor catalog status, inventory levels, order flows, and revenue metrics.

Total Products
{{ number_format($totalProducts) }}
Active in catalog
Active
{{ number_format($activeProducts) }}
Available on shop
Out of Stock
{{ number_format($outOfStock) }}
Needs restocking
Total Orders
{{ number_format($totalOrders) }}
+14% this month
Customers
{{ number_format($totalCustomers) }}
Registered accounts
Total Revenue
₹{{ number_format($revenue, 2) }}
+18.5% growth

Recent Customer Orders

Latest purchases placed through the website

View All Orders
@forelse($recentOrders as $order) @empty @endforelse
Order # Customer Amount Status Date Action
{{ $order->order_number }} {{ $order->customer_name }} ₹{{ number_format($order->total_amount, 2) }} {{ strtoupper($order->order_status) }} {{ $order->created_at ? $order->created_at->format('M d, Y') : 'N/A' }} VIEW
No orders recorded yet. Place an order from the shop to test!

Recent Products Added

Latest additions to the Dwaraka jewellery catalog

View All
@forelse($recentProducts as $product) @empty @endforelse
Product SKU Category Price Stock Action
{{ $product->name }}

{{ $product->name }}

@if($product->is_featured) FEATURED @endif
{{ $product->sku ?? 'N/A' }} {{ $product->category->name ?? 'Uncategorized' }} ₹{{ number_format($product->price, 2) }} @if($product->stock > 0) {{ $product->stock }} in stock @else Out of stock @endif
No products available.

Dwaraka Collection Specs

18K MICRO GOLD
Database Driver MySQL 8.0
Framework Version Laravel 12.x
Security Protocol Bcrypt / Hashed Session
@endsection