@extends('layouts.view_layout') @section('tab_content')
| {{ __('Description') }} | {{ __('Value') }} |
|---|---|
| {{ __($name) }} | |
| {{__("Total " .$area_name." Area")}} | {{ number_format($plan->builtup_area) ?? '-' }} |
| {{ __($name.' Start Date') }} | {{isset($plan->start_date) ?date('M-Y',strtotime($plan->start_date)) : '-' }} |
| {{ __('Average Construction Plan Cost / Area Unit') }} | {{ $plan->cost_per_unit ?? '-' }} |
| {{ __('Cost Annual Progression Rate') }} % | {{ $plan->annual_progression_rate ?? '-' }} % |
| {{ __('Contingency Rate') }} % | {{ $plan->contingency_rate ?? '-' }} % |
| {{ __($name .' Annual Execution') }} | |
| {{__("Year") . ' '. $year}} ( % ) | {{ $annual_rate[$year] ?? 0 }} % |
| {{ __( 'Payment Plan') }} | |
| {{ __( 'Down Payment') }} % | {{ $plan->down_payment ?? '-' }} % |
| {{ __( 'Remaining Balance Rate One') }} % | {{ $plan->balance_rate_one ?? '-' }} % |
| {{__( 'Due In (Days)') }} | {{ $plan->balance_one_due_in ?? '-' }} |
| {{ __( 'Remaining Balance Rate Two') }}% | {{ $plan->balance_rate_two ?? '-' }} % |
| {{__( 'Due In (Days)') }} | {{ $plan->balance_two_due_in ?? '-' }} |