@extends('user::layouts.backend-master') @section('breadcrumb_title', 'View Taxonomy') @section('content')
| Type | {{ ucfirst($taxonomy->taxonomy_type) }} |
|---|---|
| Slug | {{ $taxonomy->slug }} |
| Language | {{ $taxonomy->language->name ?? 'Unknown' }} |
| Parent | @if ($taxonomy->parent) {{ $taxonomy->parent->name }} @else None (Top Level) @endif |
| Color | @if ($taxonomy->color) {{ $taxonomy->color }} @else Not set @endif |
| Icon |
@if ($taxonomy->getFirstMediaUrl('icon'))
|
| Sort Order | {{ $taxonomy->sort_order }} |
| Created | {{ $taxonomy->created_at->format('M d, Y H:i') }} |
| Featured Image |
|
| Description | {!! $taxonomy->description ?? 'No description provided' !!} |
{{ $taxonomy->contents->where('status', 'published')->count() }} Published
| Title | Type | Status | Actions |
|---|---|---|---|
| {{ $content->title }} | {{ ucfirst($content->content_type) }} | {{ ucfirst($content->status) }} |
@include('backend::components.edit-button', [
'route' => route('admin.content.edit', $content->id)
])
@include('backend::components.show-button', [
'route' => route('admin.content.show', $content->id)
])
|
No content is associated with this taxonomy yet.
@endifThis taxonomy has no children.
@endif| {{ $key }} |
@if (is_array($value) || is_object($value))
{{ json_encode($value, JSON_PRETTY_PRINT) }}
@else
{{ $value }}
@endif
|
|---|