{{ __('Seller Management') }}

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Total Sellers
{{ number_format($totalAgents) }}
Active Sellers
{{ number_format($activeAgents) }}
Needs Sync
{{ number_format($needsSync) }}
Clear
@livewire('admin.sync-sellers')
@if($agents->count() > 0)
@foreach($agents as $agent) @endforeach
Seller ID Name Contact Status Last Synced Actions
{{ $agent->agent_matrix_id }}
{{ $agent->name }}
@if($agent->email)
{{ $agent->email }}
@endif @if($agent->phone)
{{ $agent->phone }}
@endif
@if($agent->status === 'active') Active @else Inactive @endif @if($agent->last_synced_at) {{ $agent->last_synced_at->format('M d, Y H:i') }} @else Never @endif View Edit
@csrf @method('DELETE')
{{ $agents->links() }}
@else

No sellers found

Get started by creating a new seller or importing from GoAffPro API.

@endif