39 lines
1.0 KiB
PHP
Raw Normal View History

2025-05-23 15:35:59 +08:00
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
2025-05-23 15:35:59 +08:00
<title>{{ config('app.name', 'Laravel') }}</title>
2025-05-23 15:35:59 +08:00
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
2025-05-23 15:35:59 +08:00
<!-- Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
@wireUiScripts
</head>
<body class="font-sans antialiased bg-gray-100">
<livewire:layout.navigation />
2025-05-23 15:35:59 +08:00
<div class="min-h-screen">
<!-- Page Heading -->
@if (isset($header))
<header class="bg-white shadow">
{{ $header }}
</header>
@endif
2025-05-23 15:35:59 +08:00
<!-- Page Content -->
<main>
{{ $slot }}
</main>
</div>
@livewireScripts
@livewire('wire-elements-modal')
</body>
2025-05-23 15:35:59 +08:00
</html>