@extends('templates.backend') @section('page-title', isset($page_title) ? $page_title : 'View Taxonomy') @section('breadcrumbs') {!! App\Helpers\Breadcrumbs::generate([ 'Taxonomies' => ['backend.taxonomies.index'], $taxonomy->name => null, ]); !!} @stop @section('content') @role('overlord') {!! link_to_route('backend.taxonomies.edit.get', 'Edit Taxonomy', [$taxonomy->id], ['class' => 'btn btn-warning']) !!} {!! link_to_route('backend.taxonomies.destroy', 'Delete Taxonomy', [$taxonomy->id], ['class' => 'btn btn-danger']) !!}

@endrole
@include('backend.taxonomies._partials.snapshot')
@include('backend.tags._partials.table', ['tags' => $taxonomy->getTags()])
@include('backend.markers._partials.table', ['markers' => $taxonomy->getMarkers()])
@stop