2024-01-19 10:49:50 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<meta name="csrf-param" content="_token"/>
|
2024-01-19 19:17:21 +03:00
|
|
|
<title>Панель администратора</title>
|
|
|
|
@vite(['resources/js/app.js'])
|
2024-01-19 10:49:50 +03:00
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
</head>
|
|
|
|
<body class="antialiased">
|
2024-02-07 16:34:04 +03:00
|
|
|
<div class="container-fluid">
|
2024-01-19 10:49:50 +03:00
|
|
|
<header
|
|
|
|
class="d-flex flex-wrap align-items-center justify-content-center justify-content-md-between py-3 mb-4 border-bottom">
|
|
|
|
<ul class="nav col-9 col-md-auto mb-2 justify-content-start mb-md-0">
|
2024-02-07 16:34:04 +03:00
|
|
|
<li><a href="{{ route('dashboard') }}" class="nav-link px-2 link-secondary text-wrap" style="width: 4rem;">Главная</a>
|
|
|
|
</li>
|
2024-01-19 10:49:50 +03:00
|
|
|
</ul>
|
|
|
|
<div class="col-md-3 text-center">
|
2024-01-19 19:17:21 +03:00
|
|
|
<a href="{{ route('home') }}" class="nav-link px-2 link-secondary">Сайт abitur.mkgtu.ru</a>
|
2024-01-19 10:49:50 +03:00
|
|
|
</div>
|
|
|
|
<div class="col-md-3 text-end">
|
|
|
|
<div>
|
|
|
|
@guest()
|
|
|
|
<a href="{{ route("login") }}" class="btn btn-outline-primary me-2">
|
|
|
|
Войти
|
|
|
|
</a>
|
|
|
|
@endguest
|
|
|
|
@auth()
|
|
|
|
<form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
|
|
|
|
@csrf
|
|
|
|
</form>
|
|
|
|
<a href="{{ route("logout") }}" class="btn btn-primary"
|
|
|
|
onclick="event.preventDefault(); document.getElementById('logout-form').submit();">
|
|
|
|
Выйти
|
|
|
|
</a>
|
|
|
|
@endauth
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
2024-01-19 19:17:21 +03:00
|
|
|
<div class="row align-items-start">
|
|
|
|
<aside class="list-group col-2">
|
|
|
|
<ul>
|
2024-02-12 15:02:31 +03:00
|
|
|
<li class="list-group-item"><a href="{{ route('documents.index') }}">Документы</a></li>
|
2024-02-13 16:01:03 +03:00
|
|
|
<li class="list-group-item"><a href="{{ route('admissions.index') }}">Экран Приема</a></li>
|
2024-02-14 10:20:40 +03:00
|
|
|
@can('viewAny', Auth::user())
|
2024-02-07 16:34:04 +03:00
|
|
|
<li class="list-group-item"></li>
|
|
|
|
<li class="list-group-item"><a href="{{ route('users.index') }}">Список администраторов</a></li>
|
2024-02-14 10:20:40 +03:00
|
|
|
@endcan
|
2024-02-07 16:34:04 +03:00
|
|
|
<li class="list-group-item"></li>
|
|
|
|
<li class="list-group-item">Справочники</li>
|
2024-02-12 15:02:31 +03:00
|
|
|
<li class="list-group-item"><a href="{{ route('educational_institutions.index') }}">Учебные
|
2024-02-07 16:34:04 +03:00
|
|
|
заведения</a></li>
|
|
|
|
<li class="list-group-item"><a href="{{ route('faculties.index') }}">Факультеты</a></li>
|
2024-02-08 16:01:40 +03:00
|
|
|
<li class="list-group-item"><a href="{{ route('departments.index') }}">Кафедры</a></li>
|
2024-02-10 11:23:38 +03:00
|
|
|
<li class="list-group-item"><a href="{{ route('directions.index') }}">Направления</a></li>
|
2024-02-14 15:00:28 +03:00
|
|
|
<li class="list-group-item"><a href="{{ route('education_levels.index') }}">Уровни образования</a></li>
|
2024-02-15 09:58:01 +03:00
|
|
|
<li class="list-group-item"><a href="{{ route('education_forms.index') }}">Формы образования</a></li>
|
2024-01-19 19:17:21 +03:00
|
|
|
</ul>
|
|
|
|
</aside>
|
2024-02-08 16:01:40 +03:00
|
|
|
<main class="col-10">@yield('content')</main>
|
2024-01-19 19:17:21 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-01-19 10:49:50 +03:00
|
|
|
</body>
|
|
|
|
</html>
|