| {{ __('cruds.sl') }} |
{{ __('cruds.payment_head') }} |
{{ __('cruds.amount') }} |
{{ __('cruds.payment_date') }} |
@php
$details_id = 0;
$where = [];
@endphp
@for ($i = 1; $i <= $total_installment_no; ++$i)
@php
$payment_name = "Installment $i";
$where = [];
$where[] = ['schedule_id', '=', $schedule_id];
$where[] = ['payment_name', '=', $payment_name];
$plotSchedule = find('ScheduleDetails', $where, 'id', 'desc', 'first');
$details_id = isset($plotSchedule) ? $plotSchedule->id : 0;
@endphp
| {{ $i }}
|
{{ $payment_name }} |
{{-- 09Nov2025 HTML Code starts (Shakib) --}}
|
{{-- 09Nov2025 HTML Code ends (Shakib) --}}
|
@php
$time = strtotime($rpDate);
$rpDate = date('Y-m-d', strtotime('+1 month', $time));
@endphp
@endfor