You can use getQueryLog()
method to get most recently executed queries. But in Laravel 5.1 it is disabled by default. So you have to enable it first.To enable you need to call DB::connection()->enableQueryLog();
DB::getQueryLog();
Tutorials focused on Web Development, ReactJS, JavaScript, PHP, Database Design, Devops
You can use getQueryLog()
method to get most recently executed queries. But in Laravel 5.1 it is disabled by default. So you have to enable it first.To enable you need to call DB::connection()->enableQueryLog();
DB::getQueryLog();