@include('components.buttons._editButton', [
'route' => 'admin.temas.edit',
'id' => [$tema->id],
'fontawesome' => '
',
'title' => __('Editar'),
'permission' => 'GERENCIADOR_DE_TEMAS',
])
@if (!$tema->is_default)
@endif
@if (!$tema->is_default && !$tema->is_active_public && !$tema->is_active_admin)
@include('components.buttons._deleteButton', [
'message' => __('* Este tema será excluído e esta ação não poderá ser desfeita, deseja continuar?'),
'route' => 'admin.temas.destroy',
'id' => [$tema->id],
'fontawesome' => '
',
'title' => __('Excluir'),
'permission' => 'GERENCIADOR_DE_TEMAS',
])
@endif