Using filament styles outside of the resource
Hi, how can I use filament styles in my app.blade.php? I want to use tables, forms with livewire components but outside the panel and I don't know how to import the styles into app.blade.php. Currently I see the components but without any style.
1 Reply
I use filament in my frontend, just added those lines in app.blade.php file;
In head tag;
@filamentStyles(packages: ['filament/forms', 'filament/support', 'filament/notifications'])
Before </body> tag;
@filamentScripts(packages: ['filament/notifications', 'filament/support', 'filament/forms'])