@extends('layouts.app') @section('title', 'Receive Shipment') @section('page-title', 'Receive Shipment') @section('content')

Receive Shipment

شپمنٹ وصول کریں

@if(isset($booking))

Shipment Details {{ $booking->cntr_no }}

@csrf

Sender

{{ $booking->customer->name ?? 'N/A' }}

Route

{{ $booking->pickup_location }} {{ $booking->delivery_location }}

Description

{{ $booking->cargo_description }}

Current Status

{{ $booking->status }}

Payment Details ادائیگی کی تفصیلات

Total Amount

Rs. {{ number_format($booking->total_amount, 2) }}

Paid Amount

Rs. {{ number_format($booking->advance_payment, 2) }}

Due Amount

Rs. {{ number_format($booking->due_payment, 2) }}

@if($booking->due_payment > 0)
Rs.

Enter the amount being collected now. Check "Full Payment" to collect the entire due amount.

@endif

Receiver Details وصول کنندہ کی تفصیلات

Cancel
@elseif(request('cntr_no'))

No booking found with CNTR Number: {{ request('cntr_no') }}

@endif
@endsection