@extends('admin.layouts.app') @section('page-title', 'Order Details') @section('content')
| # | Description | CTN | QTY | TTL/QTY | Unit | Price (₹) | TTL Amount (₹) | CBM | TTL CBM | KG | TTL KG | Shop No |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->description }} | {{ $item->ctn }} | {{ $item->qty }} | {{ $item->ttl_qty }} | {{ $item->unit }} | ₹{{ number_format($item->price ?? 0, 2) }} | ₹{{ number_format($item->ttl_amount ?? 0, 2) }} | {{ number_format($item->cbm ?? 0, 3) }} | {{ number_format($item->ttl_cbm ?? 0, 3) }} | {{ number_format($item->kg ?? 0, 3) }} | {{ number_format($item->ttl_kg ?? 0, 3) }} | {{ $item->shop_no ?? '-' }} |
No order items found.
| # | Description | Origin | Destination | Description | CTN | QTY | TTL/QTY | Amount (₹) | Status |
|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $orderItem['description'] ?? '-' }} | {{ $orderItem['origin'] ?? '-' }} | {{ $orderItem['destination'] ?? '-' }} | {{ $orderItem['description'] ?? '-' }} | {{ $orderItem['ctn'] ?? '-' }} | {{ $orderItem['qty'] ?? '-' }} | {{ $orderItem['ttl_qty'] ?? '-' }} | ₹{{ number_format($orderItem['amount'] ?? 0, 2) }} | @php $status = strtolower(str_replace(' ', '-', $orderItem['status'] ?? 'pending')); @endphp {{ ucfirst($orderItem['status'] ?? 'Pending') }} |
This order is not part of any shipment.
INVOICE NO: {{ $invoiceData['invoice_no'] }}
Kent Logistic
123 Logistics Street
Mumbai, Maharashtra 400001
Email: support@kentlogistic.com
Phone: +91 1234567890
{{ $invoiceData['customer']['name'] }}
{{ $invoiceData['customer']['address'] }}
Pincode: {{ $invoiceData['customer']['pincode'] }}
Email: {{ $invoiceData['customer']['email'] }}
Phone: {{ $invoiceData['customer']['mobile'] }}
| # | Description | CTN | QTY | TTL/QTY | Unit | Price (₹) | TTL Amount (₹) | CBM | TTL CBM | KG | TTL KG | Shop No |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->description }} | {{ $item->ctn ?? '-' }} | {{ $item->qty }} | {{ $item->qty }} | {{ $item->unit ?? '-' }} | ₹{{ number_format($item->price ?? 0, 2) }} | ₹{{ number_format($item->ttl_amount ?? 0, 2) }} | {{ number_format($item->cbm ?? 0, 3) }} | {{ number_format(($item->cbm ?? 0) * $item->qty, 3) }} | {{ number_format($item->kg ?? 0, 3) }} | {{ number_format(($item->kg ?? 0) * $item->qty, 3) }} | {{ $item->shop_no ?? '-' }} |
No invoice generated for this order.
An invoice can be generated from the orders list.