movie-night-nuevo/resources/views/components/layouts/app.blade.php
Edward Tirado Jr. a0748788ee
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (push) Waiting to run
fixed nonce
2025-12-14 13:44:20 -06:00

12 lines
288 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>
@livewireScriptConfig(['nonce' => request()->attributes->get('csp-nonce')])
</body>
</html>