@extends('layouts.app') @section('title', 'Export Dashboard') @push('styles') @endpush @section('breadcrumbs') @endsection @section('content')
Overview of export operations
{{ $kpi['title'] }}
Total Export Value
Active Bookings
Pending Documents
Revenue This Month
| Order # | Customer | Commodity | ETD | Amount | Status |
|---|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->customer->name ?? 'N/A' }} | {{ $order->commodity->name ?? 'N/A' }} | {{ optional($order->etd)->format('d M Y') ?? 'TBD' }} | {{ number_format($order->total_amount, 2) }} | @php $sc = ['draft'=>'secondary','confirmed'=>'info','shipped'=>'primary','delivered'=>'success','on_hold'=>'danger']; @endphp {{ str_replace('_', ' ', ucfirst($order->status)) }} |
| No recent orders | |||||
{{ $alert['title'] ?? 'Alert' }}
{{ $alert['message'] ?? '' }}
{{ $alert['time'] ?? '' }}No alerts