{{ __($setTitle) }}

@forelse($investmentLogs as $key => $investLog) @empty @endforelse
{{ __('Initiated At') }} {{ __('Trx') }} {{ __('Plan') }} {{ __('Amount') }} {{ __('Interest') }} {{ __('Should Pay') }} {{ __('Paid') }} {{ __('Upcoming Payment') }} {{ __('Status') }} {{ __('Action') }}
{{ showDateTime($investLog->created_at) }} {{ $investLog->trx }} {{ __($investLog->plan_name) }} {{ getCurrencySymbol() }}{{ shortAmount($investLog->amount) }} @if(@$investLog->interest_type == \App\Enums\Investment\InterestType::PERCENT->value) {{ shortAmount($investLog->interest_rate) }} % @else {{ getCurrencySymbol() }}{{ shortAmount($investLog->interest_rate) }} @endif {{ $investLog->should_pay != -1 ? getCurrencySymbol(). shortAmount($investLog->should_pay) : '****' }} {{ getCurrencySymbol() }}{{ shortAmount($investLog->profit) }} @if($investLog->status == \App\Enums\Investment\Status::INITIATED->value)
@else {{ __('N/A') }} @endif
{{ \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() }}