View
<!doctype html>
<html lang="en">
<head>
<script>
const isDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches;
document.documentElement.setAttribute("data-bs-theme", isDarkMode ? "dark" : "light");
</script>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
{{-- Vite load css and js --}}
@vite('resources/css/app.css')
@vite('resources/js/app.js')
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
{{ $slot }}
</div>
</div>
</div>
<x-push-notifications></x-push-notifications>
</body>
</html>