@extends('admin.layouts.app') @section('page-title', 'Order Details') @section('content') {{-- FULL-WIDTH FLUID CONTAINER --}}
Detailed view of this shipment order
{{ $user->company_name ?? 'N/A' }}
{{ $user->email ?? '' }}
{{ $user->mobile_no ?? '' }}
{{ $user->address ?? '' }}
{{ $user->pincode ?? '' }}Order ID
Mark No
Total Items
Status
{{ ucfirst($order->status) }}Origin
Destination
| # | Description | CTN | QTY | TTL/QTY | Unit | Price | Total Amount | CBM | TTL CBM | KG | TTL KG | Shop No | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->description }} | {{ $item->ctn }} | {{ $item->qty }} | {{ $item->ttl_qty }} | {{ $item->unit }} | {{ number_format($item->price, 2) }} | {{ number_format($item->ttl_amount, 2) }} | {{ $item->cbm }} | {{ $item->ttl_cbm }} | {{ $item->kg }} | {{ $item->ttl_kg }} | {{ $item->shop_no }} |
@if($status === 'pending')
@can('order.edit')
@endcan
@can('order.delete')
@endcan
@endif
|