@extends('layouts.admin') @section('content')

Tipos de Ações Processos

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