@extends('appshell::layouts.private') @section('title') {{ $taxonomy->name }} @stop @section('content')
@include('vanilo::taxon._tree', ['taxons' => $taxonomy->rootLevelTaxons()]) @can('create taxons') @endcan
@can('edit taxonomies') {{ __('Edit Category Tree') }} @endcan @can('delete taxonomies') {!! Form::open([ 'route' => ['vanilo.admin.taxonomy.destroy', $taxonomy], 'method' => 'DELETE', 'class' => 'float-right', 'data-confirmation-text' => __('Delete this categorization: ":name"?', ['name' => $taxonomy->name]) ]) !!} {!! Form::close() !!} @endcan
@include('vanilo::media._index', ['model' => $taxonomy])
@stop