Usuário | Papel | Status | Opções |
---|---|---|---|
{{ $profile->user }} | {{ $profile->typeAsString() }} | {{ $profile->statusAsString() }} |
@include('components.buttons.btn-edit-task', [
'btn_class' => 'btn-edit_user_type',
'btn_id' => $profile->id,
])
@include('components.buttons.btn-delete', [
'id' => $profile->id,
'btn_class' => 'btn btn-danger',
'route' => route('user-type_delete', ['id' => $profile->id])
])
|