summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-04-09 22:42:43 +0100
committerSam Light <samlight1994@gmail.com>2025-04-09 22:42:43 +0100
commit254b5f1abfdec2a051988150d7c36df43f455cc1 (patch)
tree0d0dad0ff54c3a5aa425216e9294c4aa02a32691 /config
Initial commit
Diffstat (limited to 'config')
-rw-r--r--config/auth_log.php9
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,
+];