@extends('dashboard.body.main') @section('container')
@if (session()->has('success')) @endif

Pending Due List

List of orders with outstanding due amounts.

Clear Search
@forelse ($orders as $order) @empty @endforelse
No. Invoice No Payment Action
{{ (($orders->currentPage() * 10) - 10) + $loop->iteration }} {{ $order->invoice_no }} {{ $order->customer->name }} {{ $order->order_date->format('Y-m-d') }} {{ $order->payment_type }} {{ number_format($order->pay_amount, 2) }} {{ number_format($order->due_amount, 2) }}
No pending due orders found.
{{ $orders->links() }}
@endsection