If you want to know how many times your Laravel query is hitting the database you can use this snippet by @Tarasovych from StackOverflow.
$counter = 0;
\DB::listen(function($sql) {
$counter++; //increment for each query was run
});
// Execute your query here
echo $counter;
Pretty handy!
1 thought on “Laravel Count Number of Queries to the Database”