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

Admin Dashboard

Orders Add product
@foreach ($metrics as $metric)
{{ $metric['label'] }} {{ $metric['value'] }} {{ $metric['note'] }}
@endforeach

Recent Orders

Live fulfillment queue
View all
@forelse ($orders as $order) @empty @endforelse
Order Customer Status Total
{{ $order->order_number }} {{ $order->customer->name }} {{ $order->statusLabel() }} {{ \App\Models\SiteSetting::formatPrice($order->total) }}
No orders yet.

Inventory

Low stock alerts
@forelse ($inventory as $item)
{{ $item['name'] }} {{ $item['stock'] }} left
@empty

No low stock items.

@endforelse

Customers

Recent accounts
@forelse ($customers as $customer)
{{ $customer->name }} {{ $customer->email }} {{ $customer->created_at->format('M d, Y') }}
@empty

No customers yet.

@endforelse
@endsection