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