@extends('admin.layouts.app') @section('panel')
@lang('Plan & User Information')
  • @lang('Plan Name') {{ __($invest->plan->name) }}
  • @lang('Investable Amount') @if ($invest->plan->fixed_amount > 0) {{ showAmount($invest->plan->fixed_amount) }} @else {{ showAmount($invest->plan->minimum) }} - {{ 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') {{ showAmount($invest->amount) }}
  • @lang('Invested') {{ showDateTime($invest->created_at) }}
  • @lang('Interest Amount') {{ 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 == 1) @lang('Running') @elseif($invest->status == 2) @lang('Canceled') @else @lang('Closed') @endif
@lang('Other Information')
  • @lang('Total Paid') {{ showAmount($invest->paid) }}
  • @lang('Total Paid Amount') {{ $invest->return_rec_time }} @lang(' times')
  • @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('Capital Back') @if ($invest->capital_status) @lang('Yes') @else @lang('No') @endif
@lang('All Interests')
@forelse($transactions as $trx) @empty @endforelse
@lang('TRX') @lang('Transacted') @lang('Amount') @lang('Post Balance') @lang('Details')
{{ $trx->trx }} {{ showDateTime($trx->created_at) }}
{{ diffForHumans($trx->created_at) }}
{{ $trx->trx_type }} {{ showAmount($trx->amount) }} {{ showAmount($trx->post_balance) }} {{ __($trx->details) }}
{{ __($emptyMessage) }}
@if ($transactions->hasPages()) @endif
@endsection