@extends('layouts.admin_layout') @section('content')

Trade Info

Go to main website
View →

{{ $investment->plan->name }}

{{ $investment->user?->first_name }} traded with the {{ $investment->plan->name }} Bot

@csrf @if($investment->is_paused == 0) @else

BOT PAUSED:

@endif

Trade Details

Entry Capital

USDT {{ number_format($investment->amount, 2) }}

Current Capital

USDT {{ number_format($investment->amount + $investment->balance, 2) }}

Start Date

{{ date('M j Y', strtotime($investment->buy_date)) }}

End Date

{{ date('M j Y', strtotime($investment->end_date)) }}

Bot Profit

$ {{ $investment->pfit }}

Mod Bot Profit

$ {{ $investment->f_pfit }}

Trade Status

@if($investment->status == 1) Pending.. @elseif($investment->status == 2) Ongoing @elseif($investment->status == 3) Completed @endif


Modify Bot Parameters

@csrf





Profit Records

@forelse($investment->inTransaction as $transaction) @empty

No Trading Profits Received.




@endforelse
Model Profit Profit Percentage Date Received
{{ $investment->plan->name }} + USDT {{ number_format($transaction->amount, 2) }} {{ $investment->plan->percent_profit }}% {{ date('M j Y', strtotime($transaction->created_at)) }}


Moved Profit History

@if($investment->moved_record) @forelse($investment->moved_record as $record) @empty @endforelse @endif
Date Amount Moved (USDT)
{{ \Carbon\Carbon::parse($record['date'])->format('M j, Y') }} - USDT {{ number_format($record['amount'], 2) }}
No profit has been moved yet.
@endsection