@extends('user::layouts.master') @section('breadcrumb_title', 'Content Translations') @push('styles') @endpush @section('content')
Title: {{ $content->title }}
Language: {{ $content->language?->name }}
Status: {{ ucfirst($content->status) }}
| 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. | ||||