@extends( 'layouts.app') @section('title') Installment Plan Detail @stop @section('breadcrumb') @stop @section('content')

Installment Information


@if($installment->plot_belting_fee) @endif @if($installment->six_installment) @endif @if($installment->status == true) @else @endif
Unit Type {{$installment->plotType ? $installment->plotType->name : ''}}
Unit Size {{$installment->plotSize ? $installment->plotSize->name : ''}}
Cost Amount {{number_format($installment->cost_amount)}}
Down Payment {{number_format($installment->down_payment / 100 * $installment->cost_amount)}} ({{round($installment->down_payment)}} %)
Confirmation Fee {{number_format($installment->confirmation_fee / 100 * $installment->cost_amount)}} ({{round($installment->confirmation_fee)}} %)
Unit Belting Fee {{number_format($installment->plot_belting_fee / 100 * $installment->cost_amount)}} ({{round($installment->plot_belting_fee)}} %)
Every Sixth Installment {{number_format($installment->six_installment / 100 * $installment->cost_amount / 8)}} ({{round($installment->six_installment)}} %)
Possession Fee {{number_format($installment->possession_fee / 100 * $installment->cost_amount)}} ({{round($installment->possession_fee)}} %)
Installment (per) {{number_format($installment->installment / 100 * $installment->cost_amount / $installment->total_months)}} ({{round($installment->installment)}} %)
Total Months {{$installment->total_months}} months
StatusActive InActive
Updated at {{$installment->updated_at}}
Created at {{$installment->created_at}}
@stop