@extends($activeTemplate . 'layouts.master') @php $kycContent = getContent('kyc_instruction.content', true); @endphp @section('content')
@if ($user->kv == Status::KYC_UNVERIFIED && $user->kyc_rejection_reason)
@elseif($user->kv == Status::KYC_UNVERIFIED)
@elseif($user->kv == Status::KYC_PENDING)
@endif
@lang('Balance')
{{ showAmount(@$widget['balance']) }}
@lang('Total Deposit')
{{ showAmount(@$widget['total_deposit']) }}
@lang('Total Withdraw')
{{ showAmount(@$widget['total_withdraw']) }}
@lang('Total Investment')
{{ showAmount(@$widget['total_investment']) }}
@lang('Total Profit')
{{ showAmount(@$widget['total_profit']) }}
@lang('Total Invested Property')
{{ @$widget['total_property'] }}
@lang('My Referrals')
{{ @$widget['referral'] }}
@lang('Referral Commission')
{{ showAmount(@$widget['referral_commission']) }}
@lang('Total Ticket')
{{ $widget['total_ticket'] }}
@if ($nextInstallment)
@lang('Property') @lang('Installment Amount') @lang('Installment Date') @lang('Status') @lang('Action')
{{ @$nextInstallment->invest->property->title }} {{ showAmount(@$nextInstallment->invest->per_installment_amount) }} {{ showDateTime(@$nextInstallment->next_time, 'Y-m-d') }} @if (@$nextInstallment->status == Status::ENABLE) @lang('Completed') @else @lang('Due') @endif
@endif @if (@$nextProfitSchedule)
@lang('Property') @lang('Total Profit') @lang('Next Profit Date')
{{ @$nextProfitSchedule->property->title }} {{ showAmount(@$nextProfitSchedule->total_profit) }}
{{ showDateTime(@$nextProfitSchedule->next_profit_date, 'Y-m-d') }}
{{ diffForHumans($nextProfitSchedule->next_profit_date) }}
@endif @if (@$nextInstallment) @include($activeTemplate . 'partials.installment_modal') @endif @if (auth()->user()->kv == Status::KYC_UNVERIFIED && auth()->user()->kyc_rejection_reason) @endif @endsection