Files
theme-park-app/resources/views/app.blade.php

15 lines
311 B
PHP
Raw Normal View History

2024-08-20 21:08:23 +02:00
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-08-21 13:07:01 +02:00
<title>PhantaApp</title>
2024-08-20 21:08:23 +02:00
@vite('resources/css/app.css')
</head>
<body class="bg-gray-500">
<h1 class="text-3xl font-bold p-4">
@yield('content')
</h1>
</body>
</html>