#How to change the notification toast time duration in WireUI?

5 messages · Page 1 of 1 (latest)

alpine stump
#

I have tried to find it but without any success. Even in the vendor package files for wireui I cannot find anything useful.
How do I change the time the notification toast duration time? Thanks for any help, guys.

alpine stump
#

Any ideas?

halcyon jackal
#

From memory, you can use the "timeout" property

#

So

    public function infoNotification(): void
    {
        $this->notification()->send([
            'icon' => 'info',
            'title' => 'Info Notification!',
            'description' => 'This is a description.',
             'timeout' => 120,
        ]);
    }

Would be a two minute timer

#

That's from memory, so may not be entirely accurate