@extends( 'layouts.app') @section('title') Installment Plan Detail @stop @section('breadcrumb')
@stop @section('content')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 | |
Status | @if($installment->status == true)Active | @elseInActive | @endif
Updated at | {{$installment->updated_at}} | |
Created at | {{$installment->created_at}} |