@extends('layouts.admin') @section('content')
| Booking # | Customer | Plot | EMI # | Due Date | Amount | Status | Action |
|---|---|---|---|---|---|---|---|
| {{ $emi->booking->booking_number }} | {{ $emi->booking->customer->name }} | {{ $emi->booking->plot->plot_number }} ({{ $emi->booking->project->name }}) | Month {{ $emi->emi_number }} | {{ $emi->due_date->format('d M, Y') }} | ₹ {{ number_format($emi->amount, 2) }} | @if($emi->status === 'paid') Paid @elseif($emi->status === 'pending') Pending @elseif($emi->status === 'overdue') Overdue @else Cancelled @endif | View Booking |
| No installments found | |||||||