© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•6mo ago•
11 replies
chinwalprasad

Filament V4 Custom footer

I just migrated a filament v3 project to filament v4. The migration process was very smooth and completed without any hiccups. The only thing that is broken is the custom footer I had implemented. I have attached the footer here. Below is my Panel Service Provider.

public function register(): void
{
    parent::register();

    FilamentView::registerRenderHook(
        PanelsRenderHook::FOOTER,
        fn (): string => Blade::render('footer')
    );

    FilamentView::registerRenderHook('panels::body.end', fn (): string => Blade::render("@vite('resources/js/app.js')"));
}
public function register(): void
{
    parent::register();

    FilamentView::registerRenderHook(
        PanelsRenderHook::FOOTER,
        fn (): string => Blade::render('footer')
    );

    FilamentView::registerRenderHook('panels::body.end', fn (): string => Blade::render("@vite('resources/js/app.js')"));
}


My
vite.config.js
vite.config.js

plugins: [
        tailwindcss(),
        laravel({
            input: [
                'resources/css/app.css',
                'resources/js/app.js',
                'resources/css/filament/app/theme.css'
            ],
            refresh: [
                ... refreshPaths,
                'app/Livewire/**',
                'app/Filament/**',
            ],
        }),
    ],
plugins: [
        tailwindcss(),
        laravel({
            input: [
                'resources/css/app.css',
                'resources/js/app.js',
                'resources/css/filament/app/theme.css'
            ],
            refresh: [
                ... refreshPaths,
                'app/Livewire/**',
                'app/Filament/**',
            ],
        }),
    ],
Screenshot_2025-08-15_at_9.46.23_PM.png
Screenshot_2025-08-15_at_9.54.31_PM.png
footer.blade.php1.32KB
Solution
Don’t import tailwind.css it’s already being imported by the filament theme. Just make sure the view for your custom footer is in a
@source
@source
directive in the css file and rebuild the assets.
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

Filament v4
FilamentFFilament / ❓┊help
6mo ago
Filament v4
FilamentFFilament / ❓┊help
2y ago
[Filament V4] Custom page action not executing
FilamentFFilament / ❓┊help
7mo ago
Filament v4 Tenancy
FilamentFFilament / ❓┊help
2mo ago