@extends('layouts.app') @section('title', 'Payment Schedules') @section('content')
| # | Provider | Invoice # | Due Date | Amount | Committed Amount | Remaining | Status | Notes | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ ++$serial }} | {{ $schedule->provider->company_name ?? $schedule->provider->name ?? 'N/A' }} | @if($schedule->invoice_id) {{ $schedule->invoice->bill_no ?? 'Invoice #' . $schedule->invoice_id }} @else — @endif | {{ $schedule->due_date->format('d M Y') }} | BDT {{ number_format($schedule->amount, 2) }} | BDT {{ number_format($schedule->paid_amount, 2) }} | BDT {{ number_format($remaining, 2) }} | @if($schedule->payment_status == 'paid') Paid @elseif($schedule->payment_status == 'partial') Partial @else Pending @endif | {{ $schedule->notes ? \Illuminate\Support\Str::limit($schedule->notes, 30) : '—' }} | |
|
No payment schedules found |
|||||||||