@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') }} {{ \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 {{ \Filament\Facades\Filament::renderHook('head.end') }} @vite('resources/css/app.css') config('filament.dark_mode'), ])> {{ \Filament\Facades\Filament::renderHook('body.start') }} {{ $slot }} {{ \Filament\Facades\Filament::renderHook('scripts.start') }} @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 @stack('beforeCoreScripts') @if (config('filament.broadcasting.echo')) @endif @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') }}