| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="{{ asset('css/tailwind.min.css') }}">
- <title>Корочки.есть</title>
- </head>
- <body>
- <header class="bg-indigo-800 text-white flex justify-betwen py-3 px-5">
- <a href="{{ route('home') }}">Лого</a>
- <nav>
- <a href="{{ route('apps') }}">Заявки</a>
- <a href="{{ route('apps.create') }}">Создать заявку</a>
- </nav>
- @guest
- <article>
- <a href="{{ route('register') }}">Создать аккаунт</a>
- <a href="{{ route('login') }}">Войти</a>
- </article>
- @endguest
- @auth
- <a href="{{ route('logout') }}">Выйти</a>
- @endauth
- @if(Auth::check() && Auth::user()->login == 'Admin')
- <a href="{{ route('admin') }}">Админ-панель</a>
- @endif
- </header>
- @yield('content')
- </body>
- </html>
|