Skip to content

Commit

Permalink
fix config comments
Browse files Browse the repository at this point in the history
  • Loading branch information
milwad-dev committed Jul 25, 2023
1 parent fd9b582 commit e084082
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions config/user-monitoring.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/*
* User properties.
*
* You can customize the use guard, table, foreign_key and ... .
* You can customize the user guard, table, foreign key, and ... .
*/
'user' => [
'model' => 'App\Models\User',
Expand All @@ -15,8 +15,6 @@

/*
* Visit monitoring configurations.
*
* You can config of visit monitoring.
*/
'visit_monitoring' => [
'table' => 'visits_monitoring',
Expand All @@ -38,14 +36,14 @@
/*
* Monitor actions.
*
* You can set true/false for monitor action like (store, update and ...).
* You can set true/false for monitor actions like (store, update, and ...).
*/
'on_store' => true,
'on_update' => true,
'on_destroy' => true,
'on_read' => true,
'on_restore' => false, // Release next version :)
'on_replicate' => false, // Release next version :)
'on_restore' => false, // Release for next version :)
'on_replicate' => false, // Release for next version :)
],

/*
Expand All @@ -55,7 +53,7 @@
'table' => 'authentications_monitoring',

/*
* If you want to delete authentications-monitoring rows when user deleted from users table you can set true or false.
* If you want to delete authentications-monitoring rows when the user is deleted from the users table you can set true or false.
*/
'delete_user_record_when_user_delete' => true,
],
Expand Down

0 comments on commit e084082

Please sign in to comment.