@extends('layouts.admin') @section('title', 'Pending Settlement Report') @push('styles') @endpush @section('content')
Overview of all pending invoices and payments
| Invoice # | Merchant | Amount | Invoice Date | Due Date | Status | Action |
|---|---|---|---|---|---|---|
| {{ $invoice->invoice_number }} | {{ $invoice->merchant->name ?? 'N/A' }} | Rs. {{ number_format($invoice->total_amount, 2) }} | {{ $invoice->invoice_date->format('M d, Y') }} | {{ $invoice->due_date->format('M d, Y') }} | @if($invoice->status == 'overdue') Overdue @else {{ ucfirst($invoice->status) }} @endif | View Details |
| No pending invoices | ||||||
| Payment # | Merchant | Amount | Payment Date | Method | Status | Action |
|---|---|---|---|---|---|---|
| {{ $payment->payment_number }} | {{ $payment->merchant->name ?? 'N/A' }} | Rs. {{ number_format($payment->amount, 2) }} | {{ $payment->payment_date->format('M d, Y') }} | {{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }} | Pending | View Details |
| No pending payments | ||||||