1
|
<!doctype html>
|
2
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
3
|
<head>
|
4
|
<meta charset="utf-8">
|
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
6
|
|
7
|
<!-- CSRF Token -->
|
8
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
9
|
|
10
|
<title>{{ config('app.name', 'Dev') }} - @yield('title')</title>
|
11
|
|
12
|
<!-- Scripts -->
|
13
|
<script src="{{ asset('js/app.js') }}" defer></script>
|
14
|
|
15
|
<!-- Fonts -->
|
16
|
<link rel="dns-prefetch" href="//fonts.gstatic.com">
|
17
|
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
|
18
|
|
19
|
<!-- Styles -->
|
20
|
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
|
21
|
</head>
|
22
|
<body>
|
23
|
<div id="app">
|
24
|
<main class="py-4">
|
25
|
<div class="container">
|
26
|
<div class="content-area">
|
27
|
@yield('content')
|
28
|
</div>
|
29
|
</div>
|
30
|
</main>
|
31
|
</div>
|
32
|
</body>
|
33
|
</html>
|