Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Commit

Permalink
Change flash message config
Browse files Browse the repository at this point in the history
  • Loading branch information
uyab committed Aug 25, 2019
1 parent a4d53ee commit 1e4ad1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
],
],
'flash' => [
'display_time' => 3000,
'display_time' => 5000,
'opacity' => 0.9,
'position' => 'top center'
],
Expand Down
6 changes: 4 additions & 2 deletions src/Flash.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ class Flash
'message' => null,
'class' => 'info',
'closeIcon' => false,
'displayTime' => 3000,
'displayTime' => 5000,
'opacity' => 0.9,
'position' => 'top center'
'position' => 'top center',
'compact' => false,
'newestOnTop' => true,
];

protected $bags = [];
Expand Down

0 comments on commit 1e4ad1c

Please sign in to comment.