{{ __($setTitle) }}

@forelse($investmentLogs as $key => $investLog) @empty @endforelse
{{ __('Initiated At') }} {{ __('Trx') }} {{ __('Plan') }} {{ __('Amount') }} {{ __('Profit') }} {{ __('Return') }} {{ __('Expiration Date') }} {{ __('Status') }} {{ __('Action') }}
{{ showDateTime($investLog->created_at) }} {{ $investLog->trx }} {{ __($investLog->plan_name) }} {{ getCurrencySymbol() }}{{ shortAmount($investLog->amount) }} {{ getCurrencySymbol() }}{{ shortAmount($investLog->profit) }} {{ shortAmount($investLog->interest_rate) }}% {{ showDateTime($investLog->expiration_date) }} {{ \App\Enums\Investment\Status::getName((int)$investLog->status) }} @if($investLog->status == \App\Enums\Investment\Status::PROFIT_COMPLETED->value || ($investLog->status == \App\Enums\Investment\Status::INITIATED->value && $investLog->profit == 0) )
@else N/A @endif
{{ __('No Data Found')}}
{{ $investmentLogs->links() }}