@extends('admin.layouts.app') @section('content')

Property Detail:

Booking Id: {{$book_property->id}}
Number: {{$book_property->property->property_number}}
Name: {{$book_property->property->name}}
@php $active_checkbox = null; @endphp @forelse ($property_emis as $key=>$property_emi) @php if(!$active_checkbox){ if($property_emi->paid_status == '0'){ $active_checkbox = $property_emi->id; } } @endphp @empty @endforelse
# EMI Date EMI Amount Discount Amount Final Amount Due Amount Paid Amount Paid Status Paid Date
@if($property_emi->paid_status == '0') id) disabled @endif> @endif {{$property_emi->emi_date}} {{$property_emi->emi_amount}} {{$property_emi->discount_amount}} {{$property_emi->final_amount}} {{$property_emi->due_amount}} {{$property_emi->final_amount - $property_emi->due_amount}} @if($property_emi->paid_status == '1') Paid @else Unpaid @endif

Nothing Found

@endsection