{{-- Register No - show only on first row --}}
{{ $i == 0 ? $app->register_no : '' }}
|
{{-- Banakhat --}}
{{ $banakhats[$i]->banakhat_amount ?? '-' }}
|
{{ $banakhats[$i]->banakhat_cheque_upi_no ?? '-' }}
|
{{-- Saledeed --}}
{{ $saledeeds[$i]->saledeed_amount ?? '-' }}
|
{{ $saledeeds[$i]->saledeed_cheque_upi_no ?? '-' }}
|
{{-- Mortgage, Construction, Extra Construction --}}
{{ $i == 0 ? ($app->mortgage_amount_number ?? '-') : '' }}
|
{{ $i == 0 ? ($app->construction_amount ?? '-') : '' }}
|
{{ $i == 0 ? ($app->extra_construction_amount ?? '-') : '' }}
|
{{-- Total Payment --}}
{{ $i == 0 ? $totalPayments : '' }}
|
{{-- Created At --}}
{{ $i == 0 ? ($app->created_at ?? '-') : '' }}
|
@endfor
@endforeach