#How to change the notification toast time duration in WireUI?
5 messages · Page 1 of 1 (latest)
Any ideas?
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