|
0
|
1 <!DOCTYPE html>
|
|
|
2 <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
3
|
|
|
4 <head>
|
|
|
5 <meta charset="utf-8">
|
|
|
6 <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
7 <meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
8
|
|
|
9 <title>{{ config('app.name', 'Laravel') }}</title>
|
|
|
10
|
|
|
11 <!-- Scripts -->
|
|
|
12 @vite(['resources/sass/app.scss', 'resources/js/app.js'])
|
|
|
13 @stack('styles')
|
|
|
14 @stack('scripts')
|
|
|
15 </head>
|
|
|
16
|
|
|
17 <body class="font-sans antialiased">
|
|
|
18 <div class="min-vh-100 bg-light">
|
|
|
19 @include('layouts.navigation')
|
|
|
20
|
|
|
21 <!-- Page Heading -->
|
|
|
22 @isset($header)
|
|
|
23 <header class="bg-white shadow-sm">
|
|
|
24 <div class="container py-4">
|
|
|
25 {{ $header }}
|
|
|
26 </div>
|
|
|
27 </header>
|
|
|
28 @endisset
|
|
|
29
|
|
|
30 <!-- Page Content -->
|
|
|
31 <main>
|
|
|
32 {{ $slot }}
|
|
|
33 </main>
|
|
|
34 </div>
|
|
|
35 @stack('modals')
|
|
|
36 </body>
|
|
|
37
|
|
|
38 </html>
|