@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: Pessoas Trans') @push('after-styles') @endpush @section('content')
@php $headLine = " Cadastros de Pessoas Trans"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => $headLine, 'routeBack' => 'admin.dashboard', 'nameBack' => __('Voltar'), 'routeAdd' => 'admin.saude.pessoas-trans.create', 'nameAdd' => __('Novo cadastro'), 'routeOther' => null, 'nameOther' => null, 'permission' => 'GERENCIADOR_DO_CADASTRO_DE_PESSOAS_TRANS', ])
Pessoas Trans Cadastradas
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($registros as $registro) @empty @endforelse
# Nome social Nome civil CPF Data de cadastro Ações
{{ $registro->id }} {{ $registro->nome_social }} {{ $registro->nome_civil }} {{ $registro->cpf }} {{ optional($registro->created_at)->format('d/m/Y') }}
@csrf @method('DELETE')
Nenhum cadastro encontrado.
{{ $registros->links() }}
{{-- Modal de Relatório --}} @endsection