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:Jump to solution
I found the problem – I had conflicting CSS classes in the blade template that prevented the notifications from being shown 🤦♂️
3 Replies
are you running php artisan queue:work ?
Notifications work on all default panel pages except for this oneDid you compare your modifications to the default file?
Solution
I found the problem – I had conflicting CSS classes in the blade template that prevented the notifications from being shown 🤦♂️