{{ $agent->name }}

Seller ID: {{ $agent->agent_matrix_id }}

@if($agent->status === 'active') Active @else Inactive @endif
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Edit
@csrf
@csrf @method('DELETE')

Contact Information

@if($agent->email) @endif @if($agent->phone) @endif @if($agent->website) @endif @if($agent->facebook || $agent->instagram || $agent->twitter)

Social Media

@if($agent->facebook) Facebook @endif @if($agent->instagram) Instagram @endif @if($agent->twitter) Twitter @endif
@endif

Additional Information

@if($agent->coupons && count($agent->coupons) > 0)

Coupon Codes

@foreach($agent->coupons as $coupon) {{ $coupon }} @endforeach
@endif @if($agent->goaffpro_id)

GoAffPro ID

{{ $agent->goaffpro_id }}

@endif

Last Synced

@if($agent->last_synced_at) {{ $agent->last_synced_at->format('M d, Y H:i') }} ({{ $agent->last_synced_at->diffForHumans() }}) @else Never synced @endif

Created

{{ $agent->created_at->format('M d, Y H:i') }}

Assigned Products ({{ $agent->products->count() }})

@if($unassignedProducts->count() > 0) @endif
@if($agent->products->count() > 0)
@foreach($agent->products as $product) @endforeach
Product Code QR Codes Notes Actions
{{ $product->name }}
{{ $product->code }}
{{ $product->qr_codes_count }} codes
{{ $product->pivot->notes ?? '-' }}
@csrf @method('DELETE')
@else

No products assigned

Get started by assigning a product to this seller.

@endif