{{ __('user.Investment List') }}

{{ __('user.You have Total :count Investment', ['count' => count($invests)]) }}

{{ __('user.Filter') }}

@include('user.invest.filter')
@if(count($invests) > 0) @foreach($invests as $index => $item) @endforeach @else @endif
{{ __('user.Transaction no.') }} {{ __('user.Method') }} {{ __('user.Plan') }} {{ __('user.Invested Amount') }} {{ __('user.Profit Amount') }} {{ __('user.Start Date') }} {{ __('user.Status') }} {{ __('user.Next Profit') }} {{ __('user.Action') }}
{{ $item->transaction_no }} {{ ucfirst($item->method) }} {{ $item->plan->title }} {{ showPrice($item->amount, 2) }} {{ showPrice($item->profit, 2) }} {{ format_date($item->created_at) }} @if($item->status == 1) {{ __('user.Running') }} @elseif($item->status == 2) {{ __('user.Completed') }} @elseif($item->status == 0) {{ __('user.Pending') }} @endif @php if ($item->lifetime_return || ($item->profit_repeat && $item->profit_repeat > 0)) { $nextProfit = \Carbon\Carbon::parse($item->profit_time); $isComplete = now()->gt($nextProfit); $diffInSeconds = now()->diffInSeconds($nextProfit, false); } else { $nextProfit = null; } @endphp @if ($nextProfit) {{ $isComplete ? __('user.Completed') : gmdate('H:i:s', max($diffInSeconds, 0)) }} @else {{ __('user.N/A') }} @endif

{{ __('front.No Results Found') }}

{{ __('front.We could not find any transactions matching your filters. Try adjusting your search criteria.') }}

@push('scripts') @endpush