@extends('layouts.app') @section('title', 'Reseller Mappings') @section('page-title', 'Reseller Mappings') @section('content')

Reseller Mappings

Add Mapping
@if(session('success'))
{{ session('success') }}
@endif
@forelse($resellers as $reseller) @empty @endforelse
ID Reseller Site Contact Info Actions
{{ $reseller->reseller_id }} @if($reseller->user) {{ $reseller->user->name }} @if($reseller->user->company_name)
{{ $reseller->user->company_name }} @endif @if($reseller->user->email)
{{ $reseller->user->email }} @endif @else {{ $reseller->reseller_name ?? '-' }} @endif
{{ $reseller->site->site_name ?? '-' }} {{ $reseller->contact_info ?? '-' }}
@csrf @method('DELETE')
No reseller mappings found
{{ $resellers->links() }}
@endsection