| Nome |
Identidade |
Telefone |
Status |
Bancada |
Ações |
@forelse($merchants as $merchant)
{{ $merchant->full_name }}
{{ $merchant->email ?? 'Sem email' }}
|
{{ $merchant->identity_number ?? 'N/A' }} |
{{ $merchant->phone ?? 'N/A' }} |
{{ $merchant->status === 'active' ? 'Ativo' : 'Inativo' }}
|
{{ $merchant->stalls->first()->code ?? '-' }} |
|
@empty
Nenhum comerciante encontrado
Este mercado ainda não possui comerciantes cadastrados.
|
@endforelse
@if(method_exists($merchants, 'links'))
@endif