Add breadcrumbs to admin project translations views
- Add breadcrumbs to `languages` and `edit` views for improved navigation.
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
@section('meta_title', __('admin-sections.Translations'))
|
||||
@section('h1', __('admin-sections.Project') . ': ' . $project->name)
|
||||
@section('breadcrumbs', Breadcrumbs::render('admin.projects.translations.edit', $project, $language))
|
||||
<x-admin.layout>
|
||||
<div class="row">
|
||||
<div class="col-12 mb-4">
|
||||
<div class="card border-0 shadow components-section">
|
||||
<div class="card-body">
|
||||
<h3 id="category" class="mb-4">{{ __('admin-sections.Translations') }}</h3>
|
||||
<h3 id="category" class="mb-4">{{ __('admin-sections.Translations') . ': ' . $language->title }}</h3>
|
||||
<div class="table-responsive">
|
||||
<form method="post" action="{{ route('admin.projects.translations.update', ['project' => $project->id, 'language' => $language->id]) }}">
|
||||
@if($serviceTranslationEnable)
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
@section('meta_title', __('admin-sections.Translations'))
|
||||
@section('h1', __('admin-sections.Project') . ': ' . $project->name)
|
||||
@section('breadcrumbs', Breadcrumbs::render('admin.projects.translations.languages', $project))
|
||||
<x-admin.layout>
|
||||
<div class="row">
|
||||
<div class="col-12 mb-4">
|
||||
|
||||
Reference in New Issue
Block a user