From e0840826fc08fb2e33ad9c79a90aa2ddfa6a01d0 Mon Sep 17 00:00:00 2001 From: miladev-ent <98118400+milwad-dev@users.noreply.github.com> Date: Tue, 25 Jul 2023 18:36:50 +0330 Subject: [PATCH] fix config comments --- config/user-monitoring.php | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/config/user-monitoring.php b/config/user-monitoring.php index 1453c8c..4a0a8a7 100644 --- a/config/user-monitoring.php +++ b/config/user-monitoring.php @@ -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', @@ -15,8 +15,6 @@ /* * Visit monitoring configurations. - * - * You can config of visit monitoring. */ 'visit_monitoring' => [ 'table' => 'visits_monitoring', @@ -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 :) ], /* @@ -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, ],