@extends('layouts.admin') @section('content')

My Traders

@if(!blank($client))

Back to User Page

@endif
@include('components.admin.error-message')
@forelse($myTraders as $trader) @empty @endforelse
ID User ID Copy Trader Status Created At Actions
{{ $trader->id }} {{ $trader->user_id }} {{ $trader->copyTrader?->name ?? '-' }} {{ ucfirst($trader->status ?? 'inactive') }} {{ $trader->created_at->toDayDateTimeString() }}
@if($trader->status != 'paused')
@csrf
@endif @if($trader->status != 'active' && $trader->status != 'cancelled')
@csrf
@endif @if($trader->status != 'cancelled')
@csrf
@endif
No traders found.
{{ $myTraders->links() }}
@endsection @section('script') @endsection