@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: Lista - Identificador de Usuarios') @section('content')
Lista de Identificador de Usuarios
@include('components.buttons._newButton', ['url' => 'admin.gerador-id.create', 'text' => 'Novo'])
@include('errors.messageFlash')
Limpar
@include('components.tables._thead', ['thead' => ['ID Gerado', 'Nome', 'CPF', 'N° Documento Sei', 'Ramal', 'Telefone', 'Status', 'link', '#']]) @forelse($registros as $registro) @empty @endforelse
{{ $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
@csrf @method('PATCH')
* Nenhum registro encontrado!
{{-- Paginação --}}
{!! $registros->links() !!}
@endsection