@extends('layouts.admin_layout') @push('styles') @endpush @section('content')

Trades

Go to main website
View →

Advanced Search & Filters

Showing {{ $investments->firstItem() ?? 0 }} to {{ $investments->lastItem() ?? 0 }} of {{ $investments->total() }} results
Clear Filters

{{ $planName }} @if($planName == 'All') Models @endif | {{ $statusName }} Trades

Total: {{ $investments->total() }} trades
@forelse($investments as $investment) @empty @endforelse
User Model Entry Capital Current Capital AT Profit Status Date Started End Date
{{ $investment->plan->name }} USDT {{ number_format($investment->amount, 2) }} USDT {{ number_format($investment->balance, 2) }}

$ {{ number_format($investment->pfit, 2) }}

$ {{ number_format($investment->f_pfit, 2) }}

@if($investment->status == 1) Pending @elseif($investment->status == 2) Ongoing @elseif($investment->status == 3) Completed @endif {{ date('M j, Y', strtotime($investment->buy_date)) }} {{ date('M j, Y', strtotime($investment->end_date)) }}

No trades found

Try adjusting your filters or search criteria

@if($investments->hasPages())
@if ($investments->onFirstPage()) Previous @else Previous @endif @if ($investments->hasMorePages()) Next @else Next @endif

Showing {{ $investments->firstItem() }} to {{ $investments->lastItem() }} of {{ $investments->total() }} results

@endif
@endsection