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