Print query in laravel
Created at 13-Mar-2021 ,
By samar
Print query in laravel
Good day, guys. In this post, we’ll look at how to solve the "Print query in laravel" programming puzzle.
-
--PATH app\Http\Controllers\<YourController.php>
$users = User::where('id', '=', 1)->dd(); // or $users = DB::table('users')->where('id', '=', 1)->dd();
DD method is used to print query in laravel. DD stands for the die and dump which is a built-in function used in laravel. DD method prints query information and then stops executing the script. -
--PATH app\Http\Controllers\<YourController.php>
$users = User::where('id', '=', 1)->toSql(); dd($users);
toSql() method gets the raw sql query. This method is good for quickly seeing the SQL query but It doesn't include the query bindings. You have to use the dd() method after toSql() to print the query in your controller file. -
--PATH app\Http\Controllers\<YourController.php>
$users = User::where('id', '=', 1)->dump(); // or $users = DB::table('users')->where('id', '=', 1)->dump();
Dump() method will print the query information but it does not stop the execution of the script. -
--PATH app\Http\Controllers\<YourController.php>
DB::enableQueryLog(); // Enable query log $employees = Employee::get(); $employeeDetails = EmployeeDetail::get(); dd(DB::getQueryLog()); // Show results of log
DB::enableQueryLog(); and dd(DB::getQueryLog()); are the methods which are used to print queries in laravel. You can enable query log using DB::enableQueryLog(); and after that you can get all queries logs using DB::getQueryLog() method. It will display all queries logs which are used after DB::enableQueryLog(); and before dd(DB::getQueryLog()) method. It also displays query bindings. You have to change the model name as per your requirements. -
--PATH app\Http\Controllers\<YourController.php>
DB::connection()->enableQueryLog(); $employeeDetail = EmployeeDetail::all(); echo '<pre>'; print_r(DB::getQueryLog()); die;
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- How to use bootstrap pagination in laravel 8
- Redirect from www to non www in laravel using htaccess
- Drop foreign key column in Laravel using migration
- Get comma separated email from input array
- How to get query string value in laravel
- How to Get records between two dates in Laravel
- Command to create MySQL Docker image and access the MySQL command-line interface (CLI) within a running Docker container
- Get all users except the followings users in overtrue laravel-follow
- Redirect to another view from controller in laravel
- How to restore multiple records after soft-deletes in Laravel
- How to authenticate admin users in Laravel ?
- Insert values in pivot table dynamically in laravel
- How to avoid duplicate entries in pivot table in Laravel
- Create user in Laravel using tinker
- Laravel route redirect not working
- How to disable timestamps in laravel
- First and last item of the array using foreach iteration in laravel blade
- How to check record exist or not in relationship table
- Call to undefined relationship [user] on model [App\Models\Post]
- How to get user information using hootlex/laravel-friendships package in laravel
- Laravel change date format
- Laravel pagination links with query string
- Laravel 10 starter app using breeze on live server
- Trying to get property 'title' of non-object
- Laravel delete all rows older than 30 days