@extends('admin.layouts.main') @section('panel')

{{ __('Plan & Account Details') }}

  • {{ __('Plan Name') }} {{ __($investment->plan_name) }}
  • {{ __('Total Payable') }} {{ $investment->period }} {{ __('times') }}
  • {{ __('Name') }} {{ $investment->user->fullname }}
  • {{ __('Email') }} {{ $investment->user->email }}
  • {{ __('Joined At') }} {{ showDateTime($investment->user->created_at) }}

{{ __('Investment Information') }}

  • {{ __('Initiated At') }} {{ showDateTime($investment->created_at) }}
  • {{ __('Invest') }} {{ getCurrencySymbol() }}{{ shortAmount($investment->amount) }}
  • {{ __('Interest') }} {{ getCurrencySymbol() }}{{ shortAmount($investment->interest_rate) }}
  • {{ __('Interest Timeframe') }} Every {{ $investment->time_table_name ?? 'Hour' }}
  • {{ __('Status') }} {{ \App\Enums\Status::getName($investment->status) }}

{{ __('Other Information') }}

  • {{ __('Total Paid') }} {{ getCurrencySymbol() }}{{ shortAmount($investment->should_pay) }}
  • {{ __('Should Pay') }} @if ($investment->should_pay != -1) {{ getCurrencySymbol() }}{{ shortAmount($investment->interest) }} @else **** @endif
  • {{ __('Last Profit Time') }} {{ showDateTime($investment->last_time) }}
  • {{ __('Next Profit Time') }} {{ showDateTime($investment->profit_time) }}
  • {{ __('Capital Back') }} {{ \App\Enums\Investment\Recapture::getName($investment->recapture_type) }}
@include('admin.partials.table', [ 'columns' => [ 'created_at' => __('admin.table.created_at'), 'trx' => __('admin.table.trx'), 'user_id' => __('admin.table.user'), 'amount' => __('admin.table.amount'), 'details' => __('admin.table.details'), ], 'rows' => $commissions, 'page_identifier' => \App\Enums\PageIdentifier::DAILY_COMMISSIONS->value, ]) @endsection