@extends('user::layouts.master') @section('breadcrumb_title', 'Content Translations') @push('styles') @endpush @section('content')

Translations for: {{ $content->title }}

Edit Original Content Back to {{ ucfirst($content->content_type) }}s

Original Content

Title: {{ $content->title }}

Language: {{ $content->language?->name }}

Status: {{ ucfirst($content->status) }}

@if ($content->getFirstMediaUrl('featured')) {{ $content->title }} @endif

Existing Translations

@if (count($availableLanguages) > 0) @else All languages have translations @endif
@forelse($translations as $langCode => $translation) @if ($translation->id !== $content->id) @endif @empty @endforelse
Title Language Status Created Actions
{{ $translation->title }} {{ $translation->language->name }} {{ ucfirst($translation->status) }} {{ customDateTimeFormate($translation->created_at) }}
@include('backend::components.edit-button', [ 'route' => route( 'author.' . $content->content_type . '.edit', $translation->id), ]) Translation @include('backend::components.delete-button', [ 'id' => $translation->id, 'class' => 'delete-translation', ])
No translations available.
@endsection @push('scripts') @endpush