my-website/resources/views/layout.blade.php

14 lines
323 B
PHP
Raw Permalink Normal View History

2024-02-18 15:16:41 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
@vite('resources/css/app.css')
</head>
<body >
@include('partials.navbar')
@yield('content')
2024-02-21 00:03:14 +02:00
@include('partials.footer')
2024-02-18 15:16:41 +02:00
</body>
2024-02-21 00:03:14 +02:00
</html>