@extends('layouts.app') @section('page_title', 'Dashboard') @section('page_subtitle', 'Operational overview for projects, orders, packing, shipping, and logs') @section('page_actions') New Order New Project @endsection @section('content') @php $ordersByProjectLabels = collect($ordersByProject)->pluck('label'); $ordersByProjectValues = collect($ordersByProject)->pluck('value'); $shipmentLabels = collect($shipmentStatus)->pluck('label'); $shipmentValues = collect($shipmentStatus)->pluck('value'); $dailyOrderLabels = collect($dailyOrders)->pluck('label'); $dailyOrderValues = collect($dailyOrders)->pluck('value'); $dailyShipmentLabels = collect($dailyShipments)->pluck('label'); $dailyShipmentValues = collect($dailyShipments)->pluck('value'); @endphp
Total Projects
{{ $summary['total_projects'] ?? 0 }}
All active and archived projects
Total Orders
{{ $summary['total_orders'] ?? 0 }}
Imported and manually created orders
Pending Orders
{{ $summary['pending_orders'] ?? 0 }}
Waiting for packaging and review
Shipped Orders
{{ $summary['shipped_orders'] ?? 0 }}
Daily Shipments
{{ collect($dailyShipments)->sum('value') }}

Orders by Project

Compare order volumes across projects.

Shipping Status

Current work in progress across the Shipping flow.

Daily Orders

Incoming order trend by day.

Daily Shipments

Shipping activity over time.

@endsection @push('scripts') @endpush