Sales Bots

You can run the Sales bot in than one Market Place at once. Begin Arbitrage!
@foreach($plans as $plan)
@php $active_trades = App\Models\Investment::where('user_id', auth()->user()->id)->where('status', 2)->where('plan_id', $plan->id)->get(); @endphp @if(count($active_trades) > 0) @foreach($active_trades as $trade)
{{ $plan->name }}
Sales In Progress.......
Total Trade Profits:
USDT {{ number_format($trade->balance, 2) }} +{{ $plan->percent_profit }}% /  day

Entry Capital: USDT {{ number_format($trade->amount, 2) }}
Current Capital: USDT {{ number_format($trade->balance + $trade->amount, 2) }}
Start Date
{{ date('j', strtotime($trade->buy_date)) }}
{{ date('M Y', strtotime($trade->buy_date)) }}
End Date
{{ date('j', strtotime($trade->end_date)) }}
{{ date('M Y', strtotime($trade->end_date)) }}
@endforeach @else
{{ $plan->name }}
bot
USDT {{ number_format($plan->min_amount, 2) }}   USDT {{ number_format($plan->max_amount, 2) }}

{{ $plan->percent_profit }} /day for   {{ $plan->profit_days }} days.


You currently don't have a running instance!

@csrf
@error('amount-'.$plan->description) {{ $message }} @enderror
@endif
@endforeach
@endsection