DB::getQueryLog() is returning an empty array, even after enabling the query log with DB::enableQueryLog().
Is anyone else having this problem? Is there something else I need to do first? Thanks.
I solve the same problem using this code in my controller
\DB::listen(
function ($sql, $bindings, $time) {
print_r([$sql, $bindings]);
}
);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community