Notification CSS isn't loading for Filament 4 on my Laravel 12?
What I am trying to do:
I'm trying to get the Filament 4 Notifications working in my standalone Laravel 12 app, the notifications work, however they have no CSS and wreck the layout.
This worked fine when it was Laravel 11 and Filament 3, so I'm really confused.
What I did:
I've added Filament 4 to the composer by using the individual components, and added the code to my model.
My issue/the error:
Attached picture.
it works but there's no CSS for it š
Code:
I added the use in my Livewire Model:
And added the code:
app.css:
Thank you in advance for any help to solve this as I've even tried ChatGPT to try and work out what I have missed, but nothing works and I know it's not Filament as no0one else is having issues so it's defo my problem.

Solution:Jump to solution
You also need
@import '../../vendor/filament/support/resources/css/index.css'; before the notifications import.4 Replies
You upgraded to Tailwind v4? Did you add
@import '../../vendor/filament/notifications/resources/css/index.css';?Thank you for getting back to me,
I did upgrade to TailwindCSS 4 beforehand.
When I add this to app.css I get this:
When that line is not in the file:
Solution
You also need
@import '../../vendor/filament/support/resources/css/index.css'; before the notifications import.thank you both so much ā¤ļø