@extends($activeTemplate . 'layouts.frontend') @php $credentials = gs('socialite_credentials'); $loginContent = getContent('login.content', true); $label = 'form--label'; $formControl = ''; $initialInvestAmount = ($property->per_share_amount / 100) * $property->down_payment; @endphp @section('content')

{{ __(@$property->title) }}

  • {{ __(@$property->location->name) }}
@foreach (@$property->propertyGallery as $item) property-image @endforeach
@foreach (@$property->propertyGallery as $item) property-image @endforeach
@lang('Property Description')
@php echo $property->details; @endphp
@lang('Location')
@include($activeTemplate . 'partials.share_now', ['title' => @$property->title])

{{ showAmount(@$property->per_share_amount) }}

@lang('Per share amount')
@guest @lang('Invest Now') @else @endguest

@lang('Available share'): {{ $property->total_share - @$property->invests_count }}

{{ $property->invests_count }} @lang('Investors') | {{ showAmount(@$property->invested_amount) }} ({{ getAmount(@$property->invest_progress) }}%)
  • @lang('Investment Type') @if (@$property->invest_type == Status::INVEST_TYPE_INSTALLMENT) @lang('Installment') @else @lang('Onetime') @endif
  • @lang('Profit') {{ @$property->getProfit }}
  • @if (@$property->invest_type == Status::INVEST_TYPE_INSTALLMENT)
  • @lang('Down Payment') {{ getAmount($property->down_payment) }}%
  • @lang('Initial Invest Amount') {{ showAmount($initialInvestAmount) }}
  • @lang('Total Installments') {{ @$property->total_installment }}
  • @lang('Per Installment Amount') {{ showAmount(@$property->per_installment_amount) }}
  • @lang('Installment Schedule') {{ __(@$property->installmentDuration->name) }}
  • @lang('Installment Late Fee') {{ showAmount(@$property->installment_late_fee) }}
  • @endif
  • @lang('Profit Schedule') {{ @$property->getProfitSchedule }}
  • @if (@$property->profit_schedule == Status::PROFIT_REPEATED_TIME)
  • @lang('Profit Repeat') {{ @$property->profit_repeat_time }} @lang('Times')
  • @endif
  • @lang('Profit Back') @lang(@$property->profit_back . ' days after investment')
  • @lang('Capital Back') {{ @$property->getCapitalBackStatus }}
@if ($investors->count() > 0)
@lang('Real Estate Investor')
@foreach ($investors as $investor)
@lang('profile-image')
{{ __($investor->fullname) }}
@lang('Join') {{ diffForHumans($investor->created_at) }}
  • {{ $investor->invests_count }} @lang('Properties')
  • {{ __($investor->country_name) }}
@endforeach
@endif @if ($latestProperties->count() > 0)
@lang('Latest Properties')
@foreach ($latestProperties as $latestProperty)
{{ __(@$latestProperty->title) }}
{{ __(@$latestProperty->location->name) }}
{{ showAmount(@$latestProperty->per_share_amount) }}
@endforeach
@endif
@include($activeTemplate . 'partials.invest_modal') @endsection @push('script') @endpush @push('style') @endpush