@extends('layouts.app')
@section('title')
Installment Plans
@section('breadcrumb')
- Home
- All Installment Plans
@stop
@section('content')
Installment Plans
# |
Unit Type |
Unit Size |
Cost Amount |
Status |
Action |
@foreach($installmentPlan as $ins)
{{$count++}} |
{{$ins->plotType->name}} |
{{$ins->plotSize->name}} |
{{number_format($ins->cost_amount)}} |
@if($ins->status == true)
Active |
@else
InActive |
@endif
|
@endforeach
@stop
@section('js')
@stop