55 lines
2.0 KiB
PHP
55 lines
2.0 KiB
PHP
@php
|
|
use Filament\Support\Enums\Width;
|
|
|
|
$livewire ??= null;
|
|
|
|
$renderHookScopes = $livewire?->getRenderHookScopes();
|
|
$maxContentWidth ??= (filament()->getSimplePageMaxContentWidth() ?? Width::Large);
|
|
|
|
if (is_string($maxContentWidth)) {
|
|
$maxContentWidth = Width::tryFrom($maxContentWidth) ?? $maxContentWidth;
|
|
}
|
|
@endphp
|
|
|
|
<x-filament-panels::layout.base :livewire="$livewire">
|
|
@props([
|
|
'after' => null,
|
|
'heading' => null,
|
|
'subheading' => null,
|
|
])
|
|
|
|
<div class="fi-simple-layout">
|
|
{{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::SIMPLE_LAYOUT_START, scopes: $renderHookScopes) }}
|
|
|
|
@if (($hasTopbar ?? true) && filament()->auth()->check())
|
|
<div class="fi-simple-layout-header">
|
|
@if (filament()->hasDatabaseNotifications())
|
|
@livewire(Filament\Livewire\DatabaseNotifications::class, [
|
|
'lazy' => filament()->hasLazyLoadedDatabaseNotifications(),
|
|
'position' => \Filament\Enums\DatabaseNotificationsPosition::Topbar,
|
|
])
|
|
@endif
|
|
|
|
@if (filament()->hasUserMenu())
|
|
@livewire(Filament\Livewire\SimpleUserMenu::class)
|
|
@endif
|
|
</div>
|
|
@endif
|
|
|
|
<div class="fi-simple-main-ctn">
|
|
<main
|
|
@class([
|
|
'fi-simple-main',
|
|
($maxContentWidth instanceof Width) ? "fi-width-{$maxContentWidth->value}" : $maxContentWidth,
|
|
])
|
|
>
|
|
{{ $slot }}
|
|
</main>
|
|
</div>
|
|
|
|
{{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::FOOTER, scopes: $renderHookScopes) }}
|
|
|
|
{{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::SIMPLE_LAYOUT_END, scopes: $renderHookScopes) }}
|
|
</div>
|
|
</x-filament-panels::layout.base>
|