@include('components.buttons._newButton', ['url' => 'admin.gerador-id.create', 'text' => 'Novo'])
@include('errors.messageFlash')
@include('components.tables._thead', ['thead' => ['ID Gerado', 'Nome', 'CPF', 'N° Documento Sei', 'Ramal', 'Telefone', 'Status', 'link', '#']])
@forelse($registros as $registro)
| {{ $registro->id_gerado }} |
{{ $registro->nome_completo }} |
{{ $registro->cpf }} |
{{ $registro->doc_sei }} |
{{ $registro->ramal }} |
{{ $registro->telefone }} |
{{ $registro->status == 0 ? 'Ativo' : 'Inativo' }} |
@if ($registro->link)
@else
—
@endif
|
|
@empty
| * Nenhum registro encontrado! |
@endforelse
{{-- Paginação --}}
{!! $registros->links() !!}