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

@lang('Investment')

@lang('Investment Details')

@lang('Plan & User Information')
  • @lang('Plan Name') {{ __($invest->plan->name) }}
  • @lang('Investable Amount') @if ($invest->plan->fixed_amount > 0) {{ $general->cur_sym }}{{ showAmount($invest->plan->fixed_amount) }} @else {{ $general->cur_sym }}{{ showAmount($invest->plan->minimum) }} - {{ $general->cur_sym }}{{ showAmount($invest->plan->maximum) }} @endif
  • @lang('Full Name') {{ $invest->user->fullname }}
  • @lang('Username') {{ $invest->user->username }}
  • @lang('Mobile') {{ $invest->user->mobile }}
  • @lang('Email') {{ $invest->user->email }}
@lang('Basic Information')
  • @lang('Invest Amount') {{ $general->cur_sym }}{{ showAmount($invest->amount) }}
  • @lang('Invested') {{ showDateTime($invest->created_at) }}
  • @lang('Interest Amount') {{ $general->cur_sym }}{{ showAmount($invest->interest) }}
  • @lang('Total Payable') @if ($invest->period != -1) {{ $invest->period }} @lang(' times') @else @lang('Lifetime') @endif
  • @lang('Interest Interval') @lang('Every ') {{ $invest->time_name }}
  • @lang('Status') @if ($invest->status) @lang('Running') @else @lang('Closed') @endif
@lang('Other Information')
  • @lang('Total Paid') {{ $general->cur_sym }}{{ showAmount($invest->paid) }}
  • @lang('Total Paid Amount') {{ $invest->return_rec_time }} @lang(' times')
  • @lang('Should Pay') @if ($invest->should_pay != -1) {{ $general->cur_sym }}{{ showAmount($invest->interest) }} @else ** @endif
  • @lang('Last Paid Time') {{ showDateTime($invest->last_time) }}
  • @lang('Next Pay Time') {{ showDateTime($invest->next_time) }}
  • @lang('Capital Back') @if ($invest->capital_status) @lang('Yes') @else @lang('No') @endif

@lang('All Interests')

@forelse($transactions as $transaction)

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

{{ __($emptyMessage) }}

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