docs: comment options array as that's the default value

This commit is contained in:
Younes ENNAJI
2024-10-19 00:42:02 +01:00
parent 632c0662e4
commit d0022aa0cb
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ return [
],
'options' => [
// Optional: Add global options here
'layout' => 'topRight'
// 'layout' => 'topRight'
],
],
],
@@ -80,7 +80,7 @@ flasher:
- '/vendor/flasher/mint.css'
options:
# Optional: Add global options here
layout: topRight
# layout: topRight
```
---
+2 -2
View File
@@ -39,7 +39,7 @@ return [
],
'options' => [
// Optional: Add global options here
'dismissible' => true,
// 'dismissible' => true,
],
],
],
@@ -76,7 +76,7 @@ flasher:
- '/vendor/flasher/flasher-notyf.min.css'
options:
# Optional: Add global options here
dismissible: true
# dismissible: true
```
---
+2 -2
View File
@@ -39,7 +39,7 @@ return [
],
'options' => [
// Optional: Add global options here
'position' => 'center'
// 'position' => 'center'
],
],
],
@@ -78,7 +78,7 @@ flasher:
- '/vendor/flasher/sweetalert2.min.css'
options:
# Optional: Add global options here
position: center
# position: center
```
---
+2 -2
View File
@@ -40,7 +40,7 @@ return [
],
'options' => [
// Optional: Add global options here
'closeButton' => true
// 'closeButton' => true
],
],
],
@@ -81,7 +81,7 @@ flasher:
- '/vendor/flasher/toastr.min.css'
options:
# Optional: Add global options here
closeButton: true
# closeButton: true
```
---