summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/access_log.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/access_log.php b/config/access_log.php
new file mode 100644
index 0000000..1a8663c
--- /dev/null
+++ b/config/access_log.php
@@ -0,0 +1,11 @@
+<?php
+
+return [
+ 'enabled' => env('ACCESS_LOG_ENABLED', true),
+ 'table_name' => 'access_log',
+ 'log_ip' => false,
+ 'log_user_agent' => false,
+
+ 'model' => \Lightscale\LaralightAccessLog\Models\AccessLog::class,
+ 'user_model' => \Illuminate\Foundation\Auth\User::class,
+];