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

13 lines
202 B
PHP
Raw Normal View History

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