@extends('admin.layouts.app') @section('panel')
@lang('Property details')
  • @lang('Property Name') {{ __(@$invest->property->title) }}
  • @lang('Investment Type') {{ $invest->property->getInvestmentType }}
  • @lang('Total Share') {{ $invest->property->total_share }}
  • @lang('Per Share Amount') {{ showAmount($invest->property->per_share_amount) }}
  • @lang('Capital Back') @php echo $invest->property->capitalBackStatusBadge; @endphp
  • @lang('Profit Type') {{ $invest->property->getProfitType }}
  • @lang('Profit Amount') {{ $invest->property->getProfit }}
  • @lang('Profit Schedule') {{ $invest->property->getProfitSchedule }}
@lang('Invest Details')
  • @lang('Username') @{{ $invest->user->username }}
  • @lang('Invested Amount') {{ showAmount($invest->total_invest_amount) }}
  • @lang('Paid Amount') {{ showAmount($invest->paid_amount) }}
  • @lang('Due Amount') {{ showAmount($invest->due_amount) }}
  • @lang('Per Installment Amount') {{ showAmount($invest->per_installment_amount) }}
  • @lang('Total Profit') {{ showAmount($invest->total_profit) }}
  • @lang('Investment Status') @php echo $invest->investStatusBadge @endphp
  • @lang('Profit Status') @php echo $invest->profitStatusBadge @endphp
@if ($invest->property->invest_type == Status::INVEST_TYPE_INSTALLMENT)
@lang('Installment History')
@forelse(@$installments as $installment) @empty @endforelse
@lang('Installment Date') @lang('Paid Date') @lang('Late Fee') @lang('Status')
{{ showDateTime($installment->next_time) }}
{{ diffForHumans($installment->next_time) }}
@if ($installment->status == Status::INSTALLMENT_SUCCESS) {{ showDateTime($installment->paid_time) }}
{{ diffForHumans($installment->paid_time) }} @else @lang('N/A') @endif
{{ showAmount($installment->late_fee) }} @php echo $installment->installmentStatusBadge @endphp
{{ __($emptyMessage) }}
@endif
@lang('Profit History')
@forelse(@$profits as $profit) @empty @endforelse
@lang('Date') @lang('Amount') @lang('TRX')
{{ showDateTime($profit->updated_at) }}
{{ diffForHumans($profit->updated_at) }}
{{ showAmount($profit->amount) }} {{ @$profit->transaction->trx }}
{{ __($emptyMessage) }}
@endsection @push('breadcrumb-plugins') @endpush