@extends('layouts.admin') @push('js') @endpush @section('content')

Tipos de documentos

@alerts @endalerts @button([ 'route' => 'admin.tipos-documentos.create', 'icon' => 'plus', 'label' => 'Incluir', 'class' => 'btn-primary' ]) @endbutton @foreach ($tipos as $tipo) @endforeach
Nome Ação
{{ $tipo->nome }} @button([ 'route' => 'admin.tipos-documentos.edit', 'routeParams' => ['tipo' => $tipo], 'class' => 'btn-primary', 'label' => 'Visualizar/Editar', 'icon' => 'edit' ]) @endbutton @button([ 'class' => 'btn-danger btn-excluir-tipo', 'icon' => 'x', 'label' => 'Excluir', 'route' => 'admin.tipos-documentos.destroy', 'routeParams' => ['tipo' => $tipo], ]) @endbutton
{{ $tipos->links() }}
@endsection