@extends('layouts.app') @section('content')
AWB
{{ $shipment->awb }}
Status
{{ $shipment->status }}
COD
{{ $shipment->financial?->cod_amount }}
Collection
{{ $shipment->financial?->collection_amount }}

Shipment Info

Customer: {{ $shipment->customer?->name }}

Receiver: {{ $shipment->receiver_name }} - {{ $shipment->receiver_phone }}

Address: {{ $shipment->address }}

Edit

Financial Breakdown

@if($shipment->financial)
Delivery{{ $shipment->financial->delivery_fee }}
Overweight{{ $shipment->financial->overweight_fee }}
COD Fee{{ $shipment->financial->cod_fee }}
Tax{{ $shipment->financial->tax_amount }}
Total Fees{{ $shipment->financial->total_fees }}
Customer Net{{ $shipment->financial->customer_net_amount }}
@endif

Change Status

@csrf

Status Timeline

@foreach($shipment->statusHistories as $row)@endforeach
DateFromToSourceNote
{{ $row->created_at }}{{ $row->from_status }}{{ $row->to_status }}{{ $row->source }}{{ $row->note }}
@endsection