adrema/resources/views/components/layouts/app.blade.php

12 lines
350 B
PHP
Raw Normal View History

2024-09-24 01:26:08 +02:00
<!DOCTYPE html>
<html class="h-full" lang="de">
<x-head></x-head>
2024-09-24 01:26:08 +02:00
<body class="min-h-full flex flex-col">
<livewire:page.sidebar />
{{ $slot }}
2024-10-20 18:25:43 +02:00
<livewire:page.modal />
2024-09-24 01:26:08 +02:00
<page-search-modal v-if="searchVisible" @close="searchVisible = false"></page-search-modal>
2024-10-14 20:25:11 +02:00
@livewireScriptConfig
2024-09-24 01:26:08 +02:00
</body>
</html>