Is there something similar in Laravel that allows you to see the actual SQL being executed? In Rails, for example, you can see the SQL in console. In Django you have a tool
If you are using Laravel 4, use this:
$queries = DB::getQueryLog(); $last_query = end($queries);