laravel package to count pages and posts visits
From your terminal:
composer require taymaz/laravel-visitcounter
This starts to install laravel-visitcounter package its working with composer so you can use it to easy.
for starting you need to create a file named config to setup backup options like directories and backup export path and ...
You have to this part of code in config/app.php
Taymaz\Visitcounter\VisitCounterServiceProvider::class,
package provide middleware to count each visits from your particular route./n example:
Route::get('/hello', [HelloWorld::class, 'hello'])->middleware('visitcount');
give middleware visitcount
\n
it can handle uri passed parameters.
have easy acess for route visits in your controller.
public function hello(Request $request){
$request->input('views'); //465
}