You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!doctype html>
|
|
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<!-- CSRF Token -->
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
|
|
|
|
<title>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
|
|
|
|
<!-- Fonts -->
|
|
|
|
<link rel="dns-prefetch" href="//fonts.bunny.net">
|
|
|
|
<link href="https://fonts.bunny.net/css?family=Nunito" rel="stylesheet">
|
|
|
|
|
|
|
|
<!-- Scripts -->
|
|
|
|
@vite(['resources/sass/app.scss', 'resources/js/app.js'])
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app">
|
|
|
|
@include('navbar')
|
|
|
|
|
|
|
|
<main class="py-4">
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
@yield('content')
|
|
|
|
|
|
|
|
@include('layouts.sidebar')
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@include('layouts.footer')
|
|
|
|
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|