@extends('layouts.user') @section('title') My Account @endsection @section('content')
{{ auth()->user()->username }}

{{ auth()->user()->email }}

My Active AI Bots
@forelse($investments->where('status', 2) as $investment)
${{ number_format($investment->balance, 2) }} USDT
@if ($investment->f_pfit > 0)

↑ AI ATP: +${{ number_format($investment->f_pfit, 2) }}

@else @if(\Carbon\Carbon::parse($investment->buy_date)->gt(\Carbon\Carbon::parse('2025-03-23 00:00:00')))

↑ AI ATP: +${{ number_format($investment->pfit, 2) }}

@endif @endif

 {{ $investment->plan?->name }} - View Bot Activity →

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

@if(($investment->funded == 1 && $investment->f_pfit == 0) || $investment->status == 3) Withdraw To Wallet @elseif($investment->funded == 0) Fund AI Capital @elseif($investment->f_pfit > 0 && $investment->status != 3) @else Fund AI Capital @endif
@empty @endforelse
Completed AI Bots
@forelse($investments->where('status', 3) as $investment)
${{ number_format($investment->balance, 2) }} USDT
@if ($investment->f_pfit > 0)

↑ AI ATP: +${{ number_format($investment->f_pfit, 2) }}

@else @if(\Carbon\Carbon::parse($investment->buy_date)->gt(\Carbon\Carbon::parse('2025-03-23 00:00:00')))

↑ AI ATP: +${{ number_format($investment->pfit, 2) }}

@endif @endif

 {{ $investment->plan?->name }} - View Bot Activity →

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

@if(($investment->funded == 1 && $investment->f_pfit == 0) || $investment->status == 3) Withdraw To Wallet @elseif($investment->funded == 0) Fund AI Capital @elseif($investment->f_pfit > 0 && $investment->status != 3) @else Fund AI Capital @endif
@empty @endforelse
@endsection