@extends('layouts.app') @section('title', $news->title . ' - WoW Rebirth') @php $breadcrumbs = [ ['title' => __('Главная'), 'url' => route('welcome')], ['title' => __('Новости'), 'url' => route('news.index')], ['title' => Str::limit($news->title, 30), 'url' => route('news.show', $news->id)], ]; @endphp @section('content') @include('pages.news.partials._show_content') @endsection