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

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

{{ $investment->plan?->name }} Activity
← Back
${{ number_format($investment->balance, 2) }} USDT

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

@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

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

Lifespan:
{{ \Carbon\Carbon::parse($investment->buy_date)->format('l, F j Y') }} - {{ \Carbon\Carbon::parse($investment->end_date)->format('l, F j Y') }}
@php $total = 0; foreach($ownerships as $o){ $total += $o->value; } @endphp
My AI Inventory
(Store Value: ${{ number_format($total) }} )
    @forelse($ownerships as $ownership)
  • {{ $ownership->product?->name }}

    ${{ number_format($ownership->value, 2) }}
    {{ $ownership->product?->market?->name }}
    Quantity: {{ $ownership->quantity }}

    @if($ownership->sells->where('status', 0)->isNotEmpty()) @php $pendingSell = $ownership->sells->where('status', 0)->first(); @endphp In Sale... @endif
  • @empty
    store

    You have no items in your store!

    @endforelse
Ai Bid & Sell History
Note: Only the most recent 100 records will be displayed
{{----}} @foreach($bids as $bid) @if($bid->status == 0) @elseif($bid->status == 1) @elseif($bid->status == 2) @endif {{----}} @endforeach
Product Total Status Market DateAction
{{ mb_strimwidth($bid->product?->name, 0, 20, '...') }}
(X {{ $bid->quantity }})
${{ number_format($bid->amount * $bid->quantity, 2) }}In Progress...SuccessfulUnsuccessful{{ mb_strimwidth($bid->market?->name, 0, 20, '...') }} {{ Carbon\Carbon::parse($bid->bid_time)->setTimezone('GMT')->format('D d-M-Y H:i:s T') }}View
@endsection