hello all. can anybody help to find me out how to change the notification position? in v2 version, it can be via config - layout.notifications.alignment
Solution
I already found it myself in history of discord. Sorry
use Filament\Notifications\Livewire\Notifications;use Filament\Support\Enums\Alignment;use Filament\Support\Enums\VerticalAlignment;Notifications::alignment(Alignment::Center);Notifications::verticalAlignment(VerticalAlignment::Start);
use Filament\Notifications\Livewire\Notifications;use Filament\Support\Enums\Alignment;use Filament\Support\Enums\VerticalAlignment;Notifications::alignment(Alignment::Center);Notifications::verticalAlignment(VerticalAlignment::Start);