@extends('layouts.app') @section('content')
Sr. # | Order Reference | Booking Date | Customer Ref # | Destination | Pickup Location | Pieces | Weight | COD Amount | Current Status |
---|---|---|---|---|---|---|---|---|---|
{{ $loop->iteration }} | {{ $parcel->orderDetail->order_reference }} | {{ date('d M Y', strtoTime($parcel->created_at)) }} | {{ $parcel->orderDetail->consignment_order_id }} | {{ $parcel->orderDetail->consignee_address }} | {{ $parcel->orderDetail->pickupLocation->address }} | {{ $parcel->orderDetail->consignment_pieces }} | {{ $parcel->orderDetail->vendorWeight->ahlWeight->weight . ' (' . $parcel->orderDetail->vendorWeight->city->first()->name . ')' }} | {{ $parcel->orderDetail->consignment_cod_price }} | {{ $parcel->orderDetail->orderStatus->name}} |
Total | Rs. {{ $order_details }} |