1
0
Fork 0
wow-raid-bingo/resources/views/layouts/app.blade.php

20 lines
430 B
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bingo!</title>
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
@livewireStyles
<script defer src="https://unpkg.com/alpinejs@3.11.1/dist/cdn.min.js"></script>
</head>
<body class="h-full">
<livewire:alert-container />
{{ $slot }}
@livewireScripts
@igniteScripts
</body>
</html>