Skip to content

Commit b05c3ae

Browse files
committed
fixing demo of sole method
1 parent 7200876 commit b05c3ae

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

  • resources/views/livewire/documentation/interactions/toast

resources/views/livewire/documentation/interactions/toast/sole.blade.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,17 @@ public function multiples(): void
1010
{
1111
$this->toast()
1212
->success('One')
13+
->persistent()
1314
->send();
1415
1516
$this->toast()
1617
->success('Two')
18+
->persistent()
1719
->send();
1820
1921
$this->toast()
20-
->success('Three')
21-
->send();
22-
23-
$this->toast()
24-
->success('Now click on "sole" button.')
22+
->success('Three persistent toasts', 'Now click on "sole" button.')
23+
->persistent()
2524
->send();
2625
}
2726

0 commit comments

Comments
 (0)