@props([ 'title' => null, ]) {{ \Filament\Facades\Filament::renderHook('head.start') }} @foreach (\Filament\Facades\Filament::getMeta() as $tag) {{ $tag }} @endforeach {{ $title ? "{$title} - " : null }} {{ config('filament.brand') }} {{ \Filament\Facades\Filament::renderHook('styles.start') }} @livewireStyles @if (filled($fontsUrl = config('filament.google_fonts'))) @endif @foreach (\Filament\Facades\Filament::getStyles() as $name => $path) @if (\Illuminate\Support\Str::of($path)->startsWith(['http://', 'https://'])) @elseif (\Illuminate\Support\Str::of($path)->startsWith('<')) {!! $path !!} @else @endif @endforeach {{ \Filament\Facades\Filament::getThemeLink() }} {{ \Filament\Facades\Filament::renderHook('styles.end') }} @if (config('filament.dark_mode')) @endif config('filament.dark_mode'), ])>
{{ $slot }}
@livewireScripts @foreach (\Filament\Facades\Filament::getBeforeCoreScripts() as $name => $path) @if (\Illuminate\Support\Str::of($path)->startsWith(['http://', 'https://'])) @elseif (\Illuminate\Support\Str::of($path)->startsWith('<')) {!! $path !!} @else @endif @endforeach @foreach (\Filament\Facades\Filament::getScripts() as $name => $path) @if (\Illuminate\Support\Str::of($path)->startsWith(['http://', 'https://'])) @elseif (\Illuminate\Support\Str::of($path)->startsWith('<')) {!! $path !!} @else @endif @endforeach @stack('scripts') {{ \Filament\Facades\Filament::renderHook('scripts.end') }} {{ \Filament\Facades\Filament::renderHook('body.end') }}