@php use Filament\Support\Enums\MaxWidth; @endphp @props([ 'after' => null, 'heading' => null, 'subheading' => null, ])
@if (($hasTopbar ?? true) && filament()->auth()->check())
@if (filament()->hasDatabaseNotifications()) @livewire(Filament\Livewire\DatabaseNotifications::class, ['lazy' => true]) @endif
@endif
'sm:max-w-xs', MaxWidth::Small, 'sm' => 'sm:max-w-sm', MaxWidth::Medium, 'md' => 'sm:max-w-md', MaxWidth::ExtraLarge, 'xl' => 'sm:max-w-xl', MaxWidth::TwoExtraLarge, '2xl' => 'sm:max-w-2xl', MaxWidth::ThreeExtraLarge, '3xl' => 'sm:max-w-3xl', MaxWidth::FourExtraLarge, '4xl' => 'sm:max-w-4xl', MaxWidth::FiveExtraLarge, '5xl' => 'sm:max-w-5xl', MaxWidth::SixExtraLarge, '6xl' => 'sm:max-w-6xl', MaxWidth::SevenExtraLarge, '7xl' => 'sm:max-w-7xl', default => 'sm:max-w-lg', }, ]) > {{ $slot }}
{{ \Filament\Support\Facades\FilamentView::renderHook(\Filament\View\PanelsRenderHook::FOOTER, scopes: $livewire->getRenderHookScopes()) }}