auditionadmin/resources/views/components/layout/app.blade.php

34 lines
775 B
PHP

@props(['page_title' => false])
<!doctype html>
<html lang="en" class="h-full bg-gray-100">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AuditionAdmin</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
@stack('scripts')
</head>
<body class="h-full">
<div class="min-h-full">
<x-layout.navbar />
@if($page_title)
<x-layout.page-header>{{ $page_title }}</x-layout.page-header>
@endif
<main>
<div class="mx-auto max-w-7xl py-6 sm:px-6 lg:px-8">
{{ $slot }}
</div>
</main>
</div>
</body>
</html>