@extends('layouts.app') @section('title', __('Отчет #:id - Багтрекер', ['id' => $report->id])) @php $breadcrumbs = [ ['title' => __('Главная'), 'url' => route('welcome')], ['title' => __('Багтрекер'), 'url' => route('reports.index')], ['title' => __('Отчет #:id', ['id' => $report->id]), 'url' => route('reports.show', $report->id)], ]; @endphp @section('content') @include('pages.reports.partials._show-content') @endsection