DB::enableQueryLog();
$arr_user = DB::table('users')->select('name', 'email as user_email')->get();
dd(DB::getQueryLog());
DB::enableQueryLog();
$user = DB::table('users')->select('name', 'email as user_email')->get();
dd(DB::getQueryLog());
use IlluminateSupportFacadesDB;
...
...
public function UserController()
{
DB::enableQueryLog();
$arr_user = DB::table('users')->select('name', 'email as user_email')->get();
dd(DB::getQueryLog());
}
public function show(Order $order){
DB::connection()->enableQueryLog();
$data = $order->all();
$queries = DB::getQueryLog();
return dd($queries);
}
import DB with this line first,
use IlluminateSupportFacadesDB;
DB::connection()->enableQueryLog();
check whethe the serviceprovider is added in the providers array in config/app.php
if no then check whether the service provider class is the correct location and
include the serivce provider in the providers array in config.app.php
check whethe the serviceprovider is added in the providers array in config/app.php
if no then check whether the service provider class is the correct location and
include the serivce provider in the providers array in config.app.php
DB::listen(function ($query) {
var_dump([
$query->sql,
$query->bindings,
$query->time
]);
});