Change location of notification pop up

Hi,

I have a flash message notification using the filament notifications. The default location is on top right .

Default setting on config/filament.php is as follows:

'notifications' => [
'vertical_alignment' => 'top',
'alignment' => 'right',
],

I wanted to change it to top-center and did the following.

'notifications' => [
'vertical_alignment' => 'top',
'alignment' => 'center',
],

However, its not working. Do I have to type something on the terminal to make this work? I have clear cache on my browser.
Was this page helpful?