@extends('layouts.app') @section('title', 'Import Dashboard') @section('breadcrumbs') @endsection @section('content')

Import Dashboard

Overview of import operations

{{ $stats['total_orders'] ?? 0 }}

Total Orders

{{ $stats['in_transit'] ?? 0 }}

In Transit

{{ $stats['pending_clearance'] ?? 0 }}

Pending Clearance

{{ $stats['completed'] ?? 0 }}

Completed

Recent Import Orders
@forelse($recentOrders ?? [] as $order) @empty @endforelse
Order # Supplier Product Status
{{ $order->order_number }} {{ $order->supplier->name ?? 'N/A' }} {{ $order->product_description }} {{ ucfirst($order->status) }}
No recent orders
@endsection