@extends($activeTemplate . 'layouts.master') @section('content')

@lang('Investment')

@lang('Investment Details')

@if ($invest->eligibleCapitalBack()) @endif
@lang('Plan Information')
    @php $plan = $invest->plan; @endphp
  • @lang('Plan Name') {{ __($plan->name) }}
  • @lang('Investable Amount') @if ($plan->fixed_amount > 0) {{ showAmount($plan->fixed_amount) }} @else {{ showAmount($plan->minimum) }} - {{ showAmount($plan->maximum) }} @endif
  • @lang('Interest') {{ showAmount($plan->interest, currencyFormat: false) }}{{ $plan->interest_type == 1 ? '%' : " gs('cur_text')" }}
  • @lang('Compound Interest') @if ($plan->compound_interest) @lang('Yes') @else @lang('No') @endif
  • @lang('Hold Capital') @if ($plan->hold_capital) @lang('Yes') @else @lang('No') @endif
  • @lang('Repeat Time') @if ($plan->repeat_time) {{ $plan->repeat_time }} @lang('times') @else @lang('Lifetime') @endif
  • @lang('Status') @if ($plan->status) @lang('Enable') @else @lang('Disable') @endif
@lang('Basic Information')
  • @lang('Initial Invest') {{ showAmount($invest->initial_amount) }}
  • @lang('Current Invest') {{ showAmount($invest->amount) }}
  • @lang('Invested') {{ showDateTime($invest->created_at) }}
  • @lang('Initial Interest') {{ showAmount($invest->initial_interest) }}
  • @lang('Current Interest') {{ showAmount($invest->interest) }}
  • @lang('Interest Interval') @lang('Every ') {{ $invest->time_name }}
  • @lang('Status') @if ($invest->status == 1) @lang('Running') @elseif($invest->status == 2) @lang('Canceled') @else @lang('Completed') @endif
@lang('Other Information')
  • @lang('Total Payable') @if ($invest->period != -1) {{ $invest->period }} @lang(' times') @else @lang('Lifetime') @endif
  • @lang('Total Paid') {{ $invest->return_rec_time }} @lang(' times')
  • @lang('Total Paid Amount') {{ showAmount($invest->paid) }}
  • @lang('Should Pay') @if ($invest->should_pay != -1) {{ showAmount($invest->should_pay) }} @else ** @endif
  • @lang('Last Paid Time') {{ showDateTime($invest->last_time) }}
  • @lang('Next Pay Time') {{ showDateTime($invest->next_time) }}
  • @lang('Net Interest') {{ showAmount($invest->net_interest) }}
@if ($invest->compound_times)

@lang('All Interests & Compound Investment')

@else

@lang('All Interests')

@endif
@forelse($transactions as $transaction)

  • @lang('Post Balance') {{ showAmount($transaction->post_balance) }}
  • @lang('Details') {{ __($transaction->details) }}
@empty

{{ __($emptyMessage) }}

@endforelse
@if ($transactions->hasPages())
{{ paginateLinks($transactions) }}
@endif
@endsection