This commit is contained in:
Bozhidar Slaveykov 2024-04-02 20:46:50 +03:00
parent 7178d7b530
commit 4972bef72f
2 changed files with 45 additions and 1 deletions

View file

@ -15,7 +15,7 @@ return [
|
*/
'default' => env('CACHE_DRIVER', 'file'),
'default' => 'array', //env('CACHE_DRIVER', 'file'),
/*
|--------------------------------------------------------------------------

View file

@ -2,6 +2,50 @@
return [
'notifications' => [
// 'new-device' => [
//
// // Send the NewDevice notification
//
// 'enabled' => env('NEW_DEVICE_NOTIFICATION', true),
//
//
//
// // Use torann/geoip to attempt to get a location
//
// 'location' => true,
//
//
//
// // The Notification class to send
//
// 'template' => \Rappasoft\LaravelAuthenticationLog\Notifications\NewDevice::class,
//
// ],
//
// 'failed-login' => [
//
// // Send the FailedLogin notification
//
// 'enabled' => env('FAILED_LOGIN_NOTIFICATION', false),
//
//
//
// // Use torann/geoip to attempt to get a location
//
// 'location' => true,
//
//
//
// // The Notification class to send
//
// 'template' => \Rappasoft\LaravelAuthenticationLog\Notifications\FailedLogin::class,
//
// ],
],
'resources' => [
'AutenticationLogResource' => \Tapp\FilamentAuthenticationLog\Resources\AuthenticationLogResource::class,
],