Posted inLaravel / Mysql / Programming

Print Debugging Queries in Laravel Example

Today, We want to share with you Print Debugging Queries in Laravel Example.In this post we will show you Display all SQL executed in Eloquent, hear for How to get last executed query in Larave 5? we will give you demo and example for implement.In this post, we will learn about How to print query or debug queries in Laravel with an example.

Print Debugging Queries in Laravel Example

There are the Following The simple About Print Debugging Queries in Laravel Example Full Information With Example and source code.

As I will cover this Post with live Working example to develop Debugging Queries in Laravel, so the Using toSql Function to Print SQL Query in Laravel for this example is following below.

Laravel Debugging Queries with Example

How to print query or debug queries in Laravel

$results = Member::where(function($q) use ($request) {
    $q->orWhere('email', 'like', '%[email protected]%');
    $q->orWhere('member_fname', 'like', '%jaydeep%');
    $q->orWhere('member_lname', 'like', '%Gondaliya%');
})->toSql();
dd($results);

How to get last executed query in Larave 5?

\DB::listen(function($sql, $bindings, $time) {
	//SQL query
    var_dump($sql);
    var_dump($bindings);
    var_dump($time);
});

Debugging Queries in Laravel

$results = Member::where(function($q) use ($request) {
    $q->where('email', 'like', '%[email protected]%');
    $q->where('member_fname', 'like', '%jaydeep%');
    $q->where('member_lname', 'like', '%Gondaliya%');
})->get();
dd($results);

How to get last executed query in Larave 5?

Example 1: laravel tosql with parameters

DB::enableQueryLog();
$member = Member::get();
$sql_qry = DB::getQueryLog();
$sql_qry = end($sql_qry);
print_r($sql_qry);

Example 2: laravel tosql with parameters

DB::enableQueryLog();
$member = Member::get();
$sql_qry = DB::getQueryLog();
print_r($sql_qry);

Example 3: laravel 5.4 get last query

$member = Member::where('id',1)->toSql();
print_r($member);
Angular 6 CRUD Operations Application Tutorials

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about Print Debugging Queries in Laravel Example.
I would like to have feedback on my Pakainfo.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

I am Jaydeep Gondaliya , a software engineer, the founder and the person running Pakainfo. I'm a full-stack developer, entrepreneur and owner of Pakainfo.com. I live in India and I love to write tutorials and tips that can help to other artisan, a Passionate Blogger, who love to share the informative content on PHP, JavaScript, jQuery, Laravel, CodeIgniter, VueJS, AngularJS and Bootstrap from the early stage.

Leave a Reply

Your email address will not be published. Required fields are marked *

We accept paid guest Posting on our Site : Guest Post Chat with Us On Skype