@extends('layouts.app') @section('title', __('Создать отчет - Багтрекер')) @php $breadcrumbs = [ ['title' => __('Главная'), 'url' => route('welcome')], ['title' => __('Багтрекер'), 'url' => route('reports.index')], ['title' => __('Создать отчет'), 'url' => route('reports.create')], ]; // Data for JS $subcategoriesData = [ 'classes' => [ 'warrior' => __('Воин'), 'paladin' => __('Паладин'), 'hunter' => __('Охотник'), 'rogue' => __('Разбойник'), 'priest' => __('Жрец'), 'death_knight' => __('Рыцарь смерти'), 'shaman' => __('Шаман'), 'mage' => __('Маг'), 'warlock' => __('Чернокнижник'), 'druid' => __('Друид'), ], 'game_world' => [ 'loot' => __('Лут'), 'population' => __('Заселение'), 'items' => __('Предметы'), 'achievements' => __('Достижения'), 'transport' => __('Транспорт'), 'reputation' => __('Репутация'), 'other' => __('Прочее'), ], 'website' => [ 'armory' => __('Оружейная'), 'account' => __('Личный кабинет'), 'shop' => __('Магазин'), 'other' => __('Другое'), ] ]; $jsTranslations = [ 'select_subcategory' => __('Выберите подкатегорию...') ]; @endphp @section('content') @include('pages.reports.partials._create-content') @endsection @push('scripts') @endpush