Skip to content

Commit

Permalink
Added comments to the config file
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjardo committed Jan 10, 2022
1 parent 278226a commit 0104f71
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions config/config.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,28 @@
<?php

return [
/*
* The database table name.
*/
'table_name' => 'authentication_logs',

/*
* The database connection for the authentication_logs table.
*
* Leave unchanged to use the Laravel default.
*/
'database_connection' => env('DB_CONNECTION', 'mysql'),

/*
* Enable/Disable the logging to the database.
*/
'enabled' => env('AUTH_LOG_ENABLED', true),

/*
* All events that the package will log to the database.
*
* You can comment out (//) the events that you don't want to log.
*/
'events' => [
\Illuminate\Auth\Events\Attempting::class,
// \Illuminate\Auth\Events\Authenticated::class,
Expand Down

0 comments on commit 0104f71

Please sign in to comment.