@extends('layouts.admin') @section('content')
{{ Illuminate\Support\Str::singular(getPostTypeTitle($route)) }} Categories
@foreach ($list as $item) @php $typePrefix = $item->typePrefix[$item->taxonomy->hierarchical]; if(!empty($item->prefix)){ $item->link = "/" . $item->prefix . $typePrefix . "/" . $item->taxonomy->slug; } else { $item->taxonomy->link = $typePrefix . "/" . $item->taxonomy->slug; } @endphp @endforeach
Name SEO Title SEO Description Slug Type Created Updated Published
@foreach($item->taxonomy->meta as $meta) @if($meta->key == 'title') {{$meta->value}} @endif @endforeach @foreach($item->taxonomy->meta as $meta) @if($meta->key == 'description') {{$meta->value}} @endif @endforeach {{ $item->taxonomy->slug }} {{ $item->taxonomy->hierarchical ? 'Category': 'Tag' }} {{ $item->taxonomy->created_at->format('Y/n/d H:i') }} {{ $item->taxonomy->updated_at->format('Y/n/d H:i') }} {{ $item->taxonomy->published ? "Yes": "No" }}
Name SEO Title SEO Description Slug Type Created Updated Published
@endsection