urlsnail/resources/views/layouts/app.blade.php

14 lines
231 B
PHP
Raw Normal View History

2024-05-25 12:47:48 +00:00
<!doctype html>
<html lang="en">
<head>
2024-05-25 17:21:34 +00:00
<title>url snail</title>
2024-05-25 12:47:48 +00:00
@vite(['resources/sass/app.scss'])
</head>
<body>
<div class="container">
<h1>url snail</h1>
2024-05-25 12:47:48 +00:00
@yield('content')
</div>
</body>
</html>