@extends('layouts.admin') @push('js') @endpush @section('content')
| Nome | Funcionário | Ação | |
|---|---|---|---|
| {{ $user->name }} | {{ $user->email }} | {{ $user->funcionario->nome ?? '' }} | @button([ 'route' => 'admin.usuarios.edit', 'routeParams' => ['usuario' => $user], 'class' => 'btn-primary', 'label' => 'Visualizar/Editar', 'icon' => 'edit' ]) @endbutton @button([ 'class' => 'btn-danger btn-excluir-usuario', 'route' => 'admin.usuarios.destroy', 'routeParams' => ['usuario' => $user], 'icon' => 'x', 'label' => 'Excluir', ]) @endbutton |