@extends('layouts.user') @section('title') AI Models @endsection @section('content')

AI Models

Browse our AI Models catalogue, and track your active and completed AI models, all in one place.

{{-- Tab bar --}}
@auth @endauth
{{-- Panel 1: Browse Plans --}}
@foreach($plans as $plan)

{{ $plan->name }}

{{ $plan->description }}

${{ number_format($plan->price) }}

  • Minimum Funding Of ${{ number_format($plan->min_fund) }}
  • Maximum Funding Of ${{ number_format($plan->max_fund) }}
  • One Time Funding
  • Runs For 30 days
@endforeach
@auth {{-- Panel 2: Running Bots --}}
@forelse($activeInvestments as $investment)
${{ number_format($investment->balance, 2) }} USDT
@if ($investment->f_pfit > 0)

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

@else @if ($investment->pfit > 0)

↑ 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
No running AI bots yet. Pick a plan from the Browse Plans tab to get started.
@endforelse
{{-- Panel 3: Completed Bots --}}
@forelse($completedInvestments as $investment)
${{ number_format($investment->balance, 2) }} USDT
@if ($investment->f_pfit > 0)

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

@else @if ($investment->pfit > 0)

↑ 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
No completed AI bots yet.
@endforelse
@endauth
@endsection