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

{{ __('Study Results') }}

{{ __('REVERO') }} > {{ $projectLand->name }} > {{ __('Project Results') }}

@if (isset($slug)) {{__('View Data')}} @endif

{{ __('Sales') }}
{{ number_format($total_sales['total_sales']) }}
{{ __('Average Selling Price For Total Saleable Areas') }}
{{ number_format($total_sales['sales_avg']) }}
{{ __('Land') }}
{{ number_format($total_land) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($total_land / $total_sales['total_sales']) * 100) }} %
{{ __('Construction Cost') }}
{{ number_format($total_constructionAndLandScape['totals']['construction_plan']) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($total_constructionAndLandScape['totals']['construction_plan'] / $total_sales['total_sales']) * 100) }} %
{{ __('Landscape Cost') }}
{{ number_format(@$total_constructionAndLandScape['totals']['land_scape_plan']) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format((@$total_constructionAndLandScape['totals']['land_scape_plan'] / $total_sales['total_sales']) * 100) }} %
{{ __('Average Construction Cost') }}
{{ number_format($total_constructionAndLandScape['total_avg']) }}
{{ __('Design & Permissions') }}
{{ number_format($design_and_permission_cost) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($design_and_permission_cost / $total_sales['total_sales']) * 100, 1) }} %
{{ __('Marketing Expenses') }}
{{ number_format($total_marketing) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($total_marketing / $total_sales['total_sales']) * 100, 1) }} %
{{ __('Sales Commissions') }}
{{ number_format($total_sales_commission) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($total_sales_commission / $total_sales['total_sales']) * 100, 1) }} %
{{ __('General Expenses') }}
{{ number_format($general_expenses) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($general_expenses / $total_sales['total_sales']) * 100, 1) }} %

Warning: Undefined variable $capital in /home/cfostools/public_html/magic.reveroplanner.com/resources/views/admin/dashboard.blade.php on line 143
{{ __('Total Project Cost') }}
{{ number_format($total_project) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($total_project / $total_sales['total_sales']) * 100) }} %
{{ __('Average Project Cost') }}
{{ $total_areas == 0 ? __("NA") : number_format($total_project / $total_areas) }}
{{ __('Corporate Tax') }}
{{ number_format($taxes) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($taxes / $total_sales['total_sales']) * 100) }} %
{{ __('Project Profit After Tax') }}
{{ number_format($profit_after_tax) }} | {{ $total_sales['total_sales'] == 0 ? __("NA") : number_format(($profit_after_tax / $total_sales['total_sales']) * 100) }} %
{{ __('Required Investment') }}
{{ $capital != __("NA") ? number_format($capital) : $capital }} | {{($capital_date !== null) ? date('M-Y',strtotime($capital_date)) : '-'}}
{{ __('Annual Average Return On Investment %') }}
{{ number_format($annual_average_return_on_investment,2) }} %
{{ __('Required Investment Return') }} %
{{ number_format($projectLand->return_rate, 2) }} %
{{ __('IRR') }}
{{ is_numeric($irr['irr']) ? number_format(@$irr['irr'],2) : @$irr['irr'] }} %
{{ __('Net Present Value') }}
{{ number_format($irr['net_present_value']) }}
@auth @if (Auth::user()->id == $projectLand->user_id) {{ __('Go To Main Page') }} @endif @endauth
@auth @if (Auth::user()->id == $projectLand->user_id)