Skip to content

Commit a207d33

Browse files
authored
Update README.md
1 parent 188af64 commit a207d33

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
Welcome to the world of enhanced user monitoring with the groundbreaking `Laravel User Monitoring` package! Developed by the brilliant minds at `Binafy`, this innovative open-source solution is designed to empower Laravel developers and website administrators with invaluable insights into user activities.
4646

47-
Tracking user behavior and interactions is now made effortless, allowing you to understand better your users' engagement, preferences, and pain points. With its seamless integration into Laravel projects, this package opens up a realm of possibilities, enabling you to optimize user experiences, detect bottlenecks, and make data-driven decisions for your platform's success.
47+
Tracking user behavior and interactions is now made effortless, allowing you to better understand your users' engagement, preferences, and pain points. With its seamless integration into Laravel projects, this package opens up a realm of possibilities, enabling you to optimize user experiences, detect bottlenecks, and make data-driven decisions for your platform's success.
4848

4949
Experience real-time monitoring like never before, as you access comprehensive analytics and visualize user interactions with ease. Please don't worry, your users' data is handled securely, respecting privacy while giving you the tools to improve your application's performance and user satisfaction.
5050

@@ -107,7 +107,7 @@ After publishing, run the `php artisan migrate` command.
107107
<a name="usage"></a>
108108
## Usage
109109

110-
The `Laravel-User-Monitoring`, needs to use middleware, traits, etc ... and it's not hard, enjoys :)
110+
The `Laravel-User-Monitoring` needs to use middleware, traits, etc, and it's not hard, enjoys :)
111111

112112
<a name="configuration"></a>
113113
## Configuration
@@ -121,7 +121,7 @@ If you want to customize the routes, you can publish the route file with this co
121121
php artisan vendor:publish --tag="laravel-user-monitoring-routes"
122122
```
123123

124-
After, you can go to the `routes/user-monitoring.php` file and customize the routes.
124+
After that, you can go to the `routes/user-monitoring.php` file and customize the routes.
125125

126126
Also, if you want to change the route file name, you can go to the config file and change the `file_path`:
127127

@@ -142,7 +142,7 @@ Also, if you want to change the route file name, you can go to the config file a
142142
<a name="user-configuration"></a>
143143
## User Configuration
144144

145-
You can config your user with the `user-monitoring.php` configuration file:
145+
You can configure your user with the `user-monitoring.php` configuration file:
146146

147147
```php
148148
'user' => [
@@ -184,7 +184,7 @@ You can config your user with the `user-monitoring.php` configuration file:
184184

185185
- `model`: If your user model exists in another place, you can change it to the correct namespace.
186186
- `foreign_key`: You can set the user foreign_key name, like `customer_id`.
187-
- `table`: You can write your users table name if is not `users.
187+
- `table`: You can write your users table name if it is not `users.
188188
- `guards`: The guards are used to authenticate.
189189
- `foreign_key_type`: The foreign key type (uuid-ulid-id).
190190
- `display_attribute`: The special attribute of the user that you want to show in views.
@@ -215,7 +215,7 @@ When you want to monitor all views of your application, you must follow below:
215215

216216
1. Publish the [Migrations](#publish)
217217

218-
2. Use `VisitMonitoringMiddleware` in Kernel.php, you can go to the `App/Http` folder and open the `Kernel.php` file and add `VisitMonitoringMiddleware` into your middleware for example:
218+
2. Use `VisitMonitoringMiddleware` in Kernel.php. You can go to the `App/Http` folder and open the `Kernel.php` file and add `VisitMonitoringMiddleware` into your middleware, for example:
219219

220220
```php
221221
use Binafy\LaravelUserMonitoring\Middlewares\VisitMonitoringMiddleware;
@@ -238,7 +238,7 @@ protected $middlewareGroups = [
238238

239239
After, you can see all pages monitoring :)
240240

241-
If you want to disable monitoring for specific pages you can go to `user-monitoring.php` that exists in the `config` folder and add pages into the `visit_monitoring` key:
241+
If you want to disable monitoring for specific pages, you can go to `user-monitoring.php` that exists in the `config` folder and add pages into the `visit_monitoring` key:
242242

243243
```php
244244
'visit_monitoring' => [
@@ -276,7 +276,7 @@ First, you need to go to the `user-monitoring` config file and highlight the day
276276
],
277277
```
278278

279-
After, you need to use [Task Scheduling](https://laravel.com/docs/10.x/scheduling) to fire-related command, so go to `app/Console/Kernel.php` and do like this:
279+
After, you need to use [Task Scheduling](https://laravel.com/docs/scheduling) to fire-related command, so go to `app/Console/Kernel.php` and do like this:
280280

281281
```php
282282
<?php
@@ -298,12 +298,12 @@ class Kernel extends ConsoleKernel
298298
}
299299
```
300300

301-
You can change `hourly` to `minute` or `second`, for more information you can read [Schedule Frequency Options](https://laravel.com/docs/10.x/scheduling#schedule-frequency-options).
301+
You can change `hourly` to `minute` or `second`. For more information, you can read [Schedule Frequency Options](https://laravel.com/docs/scheduling#schedule-frequency-options).
302302

303303
<a name="turn-on-off"></a>
304304
### Turn ON-OFF
305305

306-
Maybe you want to turn off visit monitoring for some or always, you can use configuration to turn it off:
306+
Maybe you want to turn off visit monitoring for some or always; you can use the configuration to turn it off:
307307

308308
```php
309309
'visit_monitoring' => [
@@ -329,7 +329,7 @@ The `Laravel-User-Monitoring` also has amazing views that you can use very easil
329329
<a name="ajax-requests"></a>
330330
### Ajax Requests
331331

332-
Maybe you may disable record visits for `Ajax` requests, you can use config to disable it:
332+
Maybe you may disable record visits for `Ajax` requests. You can use config to disable it:
333333

334334
```php
335335
'visit_monitoring' => [
@@ -415,9 +415,9 @@ class Product extends Model
415415
}
416416
```
417417

418-
Now when a product is read, created, updated, or deleted, you can see which users doing that.
418+
Now, when a product is read, created, updated, or deleted, you can see which users are doing that.
419419

420-
If you want to disable some actions like created, you can use the config file:
420+
If you want to disable some actions, like creation, you can use the config file:
421421

422422
```php
423423
'action_monitoring' => [

0 commit comments

Comments
 (0)