How to Get Last Executed Query in Laravel?

By Hardik Savani November 5, 2023 Category : Laravel

Hello Guys,

In this short tutorial, we will share the quick and straightforward way to how to get last executed query in laravel. I would like to share with you print last query in laravel. I’m going to show you about laravel get last executed query. This post will give you a simple example of how to print last query in laravel.

You can use this example with laravel 6, laravel 7, laravel 8, laravel 9 and laravel 10 versions.

We have been many time need to get executed query log or you want to get last executed query or maybe if you want to diaplsy sql query from laravel query builder then you can do it that. so i have three example for display executed query in Laravel 5. when you are working on laravel application at that times , i think you need many time to print last run query or if you want to check direct from phpmyadmin sql box, so at that time you have to follow this three example. so, let's see three example of getting sql query from Laravel Query Builder.

Example 1:

In this example we can get directly get current sql query using toSql() of laravel query builder. In this example you don't need to enable query log or something you can directly query like bellow example:

Controller Code:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Models\User;

class UserController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index(Request $request)

{

$user = User::where('id',1)->toSql();

dd($user);

}

}

Output:

select * from `users` where `id` = ?

Example 2:

Ok, In this example we must need to enable query log using DB::enableQueryLog() of Laravel Query builder. enableQueryLog() will give access to store all execute query in cache and we can get that query using DB::getQueryLog(). In this example you will get all query log not last only. bellow example how to use it together.

Controller Code:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Models\User;

use DB;

class UserController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index(Request $request)

{

DB::enableQueryLog();

$user = User::where('id',1)->get();

$query = DB::getQueryLog();

dd($query);

}

}

Output:

select * from `users` where `id` = ?

Example 3:

In this example i make the same as example 2, but you can get exactly last query using end(). so let's see how to use.

Controller Code:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Models\User;

use DB;

class UserController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index(Request $request)

{

DB::enableQueryLog();

$user = User::where('id',1)->get();

$query = end($query);

dd($query);

}

}

Output:

select * from `users` where `id` = ?

You can try any one....

Tags :
Shares