This commit is contained in:
tanch0
2024-06-23 17:02:56 +05:45
parent 25760ad989
commit f85671cd4c
93 changed files with 2886 additions and 1579 deletions

View File

@ -193,6 +193,7 @@ return [
'aliases' => Facade::defaultAliases()->merge([
'Toastr' => Brian2694\Toastr\Facades\Toastr::class,
'Share' => Jorenvh\Share\ShareFacade::class,
'Html' => Spatie\Html\Facades\Html::class,
])->toArray(),
];

21
config/toastr.php Normal file
View File

@ -0,0 +1,21 @@
<?php
return [
'options' => [
"closeButton" => false,
"debug" => false,
"newestOnTop" => false,
"progressBar" => false,
"positionClass" => "toast-top-right",
"preventDuplicates" => false,
"onclick" => null,
"showDuration" => "300",
"hideDuration" => "1000",
"timeOut" => "5000",
"extendedTimeOut" => "1000",
"showEasing" => "swing",
"hideEasing" => "linear",
"showMethod" => "fadeIn",
"hideMethod" => "fadeOut"
],
];