diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/auth_log.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/auth_log.php b/config/auth_log.php new file mode 100644 index 0000000..d56e51b --- /dev/null +++ b/config/auth_log.php @@ -0,0 +1,9 @@ +<?php + +return [ + 'enabled' => env('AUTH_LOG_ENABLED', true), + 'table_name' => 'auth_log', + + 'model' => \Lightscale\LaralightAuthLog\Models\AuthLog::class, + 'user_model' => \Illuminate\Foundation\Auth\User::class, +]; |