@extends('appshell::layouts.private') @section('title') {{ __('Category Trees') }} @stop @section('content')
@yield('title')
@can('create taxonomies') {!! icon('+') !!} {{ __('New Category Tree') }} @endcan
@foreach($taxonomies as $taxonomy) @endforeach
{{ __('Name') }} {{ __('Slug') }} {{ __('Created') }}  
@can('view taxonomies') {{ $taxonomy->name }} @else {{ $taxonomy->name }} @endcan {{ $taxonomy->slug }} {{ show_datetime($taxonomy->created_at) }} @can('edit taxonomies') {{ __('Edit') }} @endcan @can('delete taxonomies') {{ Form::open([ 'url' => route('vanilo.admin.taxonomy.destroy', $taxonomy), 'data-confirmation-text' => __('Delete this categorization: ":name"?', ['name' => $taxonomy->name]), 'method' => 'DELETE' ])}} {{ Form::close() }} @endcan
@stop