@extends('user::layouts.backend-master') @section('breadcrumb_title', 'Taxonomy Translations') @section('content')

Translations for: {{ $taxonomy->name }}

Edit Original Taxonomy Back to Taxonomies
Original Taxonomy

Name: {{ $taxonomy->name }}

Type: {{ ucfirst($taxonomy->taxonomy_type) }}

Language: {{ $taxonomy->language->name }}

@if ($taxonomy->getFirstMediaUrl('featured')) {{ $taxonomy->name }} @endif
Existing Translations
@if (count($availableLanguages) > 0)
@else All languages have translations @endif
@forelse($translations as $langCode => $translation) @if ($translation->id !== $taxonomy->id) @endif @empty @endforelse
Language Name Status Created Actions
{{ $translation->language->name }} {{ $translation->name }} {{ $translation->status ? 'Active' : 'Inactive' }} {{ $translation->created_at->format('M d, Y') }}
@include('backend::components.edit-button', [ 'route' => route('admin.taxonomy.edit', $translation->id), ]) @include('backend::components.delete-button', [ 'id' => $translation->id, 'class' => 'delete-translation', ])
No translations available.
@endsection @push('scripts') @endpush