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

17 lines
363 B
PHP
Raw Permalink Normal View History

<!doctype html>
<html lang="en">
<head>
<title>url snail</title>
@vite(['resources/sass/app.scss'])
</head>
<body>
<div class="container">
<header>
<h1><a href="{{ url("/") }}">url snail</a></h1>
<a href="{{ action('BookmarkController@create') }}">+</a>
</header>
{{ $slot }}
</div>
</body>
</html>