Notifications not working on custom `create` view

Hi, I'm having a hard time getting the (standard) notifications to work on my custom view for a CreateRecord Resource. Notifications work on all default panel pages except for this one, so I think it has to do something with it being a custom view. I copied the contents of vendor/filament/filament/resources/views/resources/pages/create-record.blade.php to my custom view as described in the docs. The notifications get properly triggered and I can see it in livewire – it's just not getting displayed. Do I have add something to the custom view in order to display them? Thanks!
Solution:
I found the problem – I had conflicting CSS classes in the blade template that prevented the notifications from being shown 🤦‍♂️
Jump to solution
3 Replies
toeknee
toeknee3w ago
are you running php artisan queue:work ?
Dennis Koch
Dennis Koch3w ago
Notifications work on all default panel pages except for this one
Did you compare your modifications to the default file?
Solution
czehnter
czehnter3w ago
I found the problem – I had conflicting CSS classes in the blade template that prevented the notifications from being shown 🤦‍♂️

Did you find this page helpful?