34 lines
673 B
PHP
34 lines
673 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
@yield('meta')
|
|
<link rel="stylesheet" href="/css/app.css">
|
|
<link rel="stylesheet" href="/css/styles.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
|
|
<div class="container mx-auto">
|
|
@include('partials.header')
|
|
|
|
<main class="mt-12">
|
|
|
|
@yield('content')
|
|
</main>
|
|
|
|
@include('partials.footer')
|
|
</div>
|
|
|
|
|
|
</div>
|
|
@include('sweetalert::alert')
|
|
|
|
<script src="/js/app.js"></script>
|
|
</body>
|
|
|
|
</html> |