@extends('layouts.app') @section('title', 'Outstanding Dues Report') @section('page-title', 'Outstanding Dues Report') @section('content')
| Date | CNTR No | Customer | Receiver | Total Amount | Paid | Due Amount | Status |
|---|---|---|---|---|---|---|---|
| {{ $booking->booking_date->format('d M, Y') }} | {{ $booking->cntr_no }} | {{ $booking->customer->name ?? 'N/A' }} | {{ $booking->receiver_name }} | {{ number_format($booking->total_amount, 2) }} | {{ number_format($booking->advance_payment, 2) }} | {{ number_format($booking->due_payment, 2) }} | {{ $booking->payment_status }} |
| No outstanding dues found. | |||||||