How do I get the query builder to output its raw SQL query as a string?

Given the following code:

DB::table('users')->get();

I want to get the raw SQL query string that the database query builder above will generate. In this example, it would be SELECT * FROM users.

How do I do this?

39 s
39

Leave a Comment