@extends('backend.layout.main')
@section('content')
| # | Payment Date | Status | Amount | Action | |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ \Carbon\Carbon::parse($installment->payment_date)->format('d M Y') }} | @if ($installment->status === 'completed')Completed | @elsePending | @endif{{ number_format($installment->amount, 2) }} | @if ($installment->status === 'pending') @else @endif |
| No installments found | |||||