@include('admin.cabi_rides.operations.navbar')

Purchase Duties Report

@if($reportData->isNotEmpty()) @foreach($reportData as $row) @endforeach
Booking ID Supplier Duty Type Vehicle Customer Driver Vehicle Group Start Date End Date Booking Price Extra KMs Extra HRs Extra KM Rate Extra Hour Rate Supplier Payout Booking Status Purchase Invoice Status
@if(!in_array($row->purchase_status, ['Partially Paid'])) @endif {{ $row->booking_id ?? 'N/A' }} {{ $row->supplier_name ?? 'N/A' }} {{ $row->duty_type_name ?? 'N/A' }} {{ $row->vehicle_number ?? 'N/A' }} {{ $row->customer_name ?? 'N/A' }} {{ $row->driver_name ?? 'N/A' }} {{ $row->vehicle_group_name ?? 'N/A' }} {{ $row->start_date }} {{ $row->end_date }} ₹{{ number_format($row->booking_price, 2) }} {{ $row->extra_km ?? 0 }} {{ $row->extra_hr ?? 0 }} ₹{{ number_format($row->extra_km_price ?? 0, 2) }} ₹{{ number_format($row->extra_hour_price ?? 0, 2) }} ₹{{ number_format($row->estimated_supplier_amount ?? 0, 2) }} {{ ucfirst($row->booking_status) }} @if($row->purchase_status === 'paid') Paid @else Unpaid @endif
@else
No bookings found.
@endif
@push('js') @endpush