Skip to content

Commit 06e3b1c

Browse files
committed
fixes README.md
1 parent 12ef0ba commit 06e3b1c

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* [2) Using Counters with no models](#2-using-counters-with-no-models)
88
* [3) Using artisan commands](#3-using-artisan-commands)
99
* [4) Using APIs for counters](#4-usign-apis-for-counters)
10-
* [Unit Testing[To be added later]](#unit-testing)
1110
* [Database Seeding](#database-seeding)
1211
* [Cache[To be added later]](#cache)
1312
* [Credits](#credits)
@@ -16,9 +15,14 @@
1615

1716
In some cases, you need to manage the state of the counters in your laravel project, like the number of visitors of your website,
1817
or number of view for a post, or number of downloads for a file, this needs to create a new table to save these records,
19-
or at least adding new column for your tables to save the count value.
18+
or at least adding new column for your tables to save the count value.
19+
Therefore, with this package, you can create as many counters for your model without needing to create a physical column in your model's table.
20+
Moreover, you can store public counters like "number_of_visitors" for your website, without needing to create a whole table to store it.
2021

21-
This package allows you to manage counters in your laravel project.
22+
23+
24+
25+
In summary, this package allows you to manage counters in your laravel project.
2226

2327
Once installed you can do stuff like this:
2428

@@ -324,8 +328,8 @@ Here's a sample seede.
324328
```
325329

326330
## Credits
327-
Maher Khdeir
328-
[Linked In](https://www.linkedin.com/in/maher-khdeir/)
331+
Maher Khdeir
332+
[Linked In](https://www.linkedin.com/in/maher-khdeir/)
329333
330334

331335
## Special Thanks

0 commit comments

Comments
 (0)