movie-night-nuevo/resources/views/components/layouts/app.blade.php

13 lines
234 B
PHP
Raw Normal View History

2025-12-12 23:07:04 -06:00
<!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>
2025-12-14 00:39:04 -06:00
@livewireScriptConfig
2025-12-12 23:07:04 -06:00
</body>
</html>