@extends('layouts.app')
@section('title', trans('menu.decision_tree_title'))
@section('content')
@php $user = auth()->user(); @endphp
@can('create decision-trees')
{{trans('forms.lbl_add_new')}}
@endcan
{{__('title.categories')}}
@if($user->hasAnyPermission(['edit decision-trees', 'delete decision-trees']))
|
@endif
{{trans("tables.name_title")}} |
{{trans("tables.description_title")}} |
@if($user->hasAnyPermission(['edit decision-trees', 'delete decision-trees']))
{{trans("tables.action_title")}} |
@endif
@stop
@section('footer-script')
@stop