@extends('admin.layouts.app') @section('page-title', 'Order Details') @section('content')
{{-- Header --}}

Orders Details

Detailed view of all orders in this shipment consolidation.

{{-- Customer Info --}}
{{ strtoupper(substr($user->customer_name ?? 'U', 0, 1)) }}
{{ $user->customer_name ?? 'Unknown Customer' }}

{{ $user->company_name ?? 'N/A' }}

{{ $user->email ?? '' }}

{{ $user->mobile_no ?? '' }}

{{ $user->address ?? '' }}

{{ $user->pincode ?? '' }}
{{-- Order Summary --}}

Order ID

{{ $order->order_id }}

Total Orders

{{ 1 }}

Status

{{ ucfirst($order->status) }}
{{-- Order Table --}}
Item No Description CTN QTY TTL/QTY Unit Amount (₹)
{{ $order->mark_no }} {{ $order->description }} {{ $order->ctn }} {{ $order->qty }} {{ $order->ttl_qty }} {{ $order->unit }} ₹{{ number_format($order->ttl_amount, 2) }}
{{-- Totals --}}
{{ $order->ttl_qty }}
Total TTL/QTY
{{ $order->ttl_kg }}
Total TTL KG
₹{{ number_format($order->ttl_amount, 2) }}
Total Amount
@endsection