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

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

{{ $product->name }}
← Back
{{ $product->initial_quantity - $product->quantity }} Sold

 Quantity Sold

@php $profit = 5/100 * $product->value; $total = $profit + $product->value; @endphp
${{ number_format($total * ($product->initial_quantity - $product->quantity), 2) }} USDT

 Amount Earned Off Sales - Paid To Main Balance

{{ $product->quantity }} Left

 Available Quantity

{{--
Sale History
Note: Only the most recent 100 records will be displayed--}}
@endsection