19 lines
464 B
PHP
19 lines
464 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
@include('partials.head', ['title' => $title ?? null])
|
|
</head>
|
|
<body class="min-h-screen bg-zinc-100">
|
|
{{ $slot }}
|
|
|
|
@persist('toast')
|
|
<flux:toast.group>
|
|
<flux:toast />
|
|
</flux:toast.group>
|
|
@endpersist
|
|
|
|
<script src="https://code.iconify.design/iconify-icon/1.0.7/iconify-icon.min.js" defer></script>
|
|
@fluxScripts
|
|
</body>
|
|
</html>
|