movie-night-nuevo/resources/views/components/layouts/app.blade.php
Edward Tirado Jr. e3b6d302c6
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
Fixed livewire script loading issues
2025-12-15 23:53:07 -06:00

11 lines
212 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_','-',app()->getLocale()) }}">
<x-head/>
<body class="bg-blue-600">
<div class="container mx-auto text-white">
<x-header/>
{{ $slot }}
</div>
</body>
</html>