Skip to content

Instantly share code, notes, and snippets.

@vivg
Created July 6, 2016 22:00
Show Gist options
  • Save vivg/53d1424704310ab5b4e80b8ebf3f0d59 to your computer and use it in GitHub Desktop.
Save vivg/53d1424704310ab5b4e80b8ebf3f0d59 to your computer and use it in GitHub Desktop.
//paste at the end of routes.php
\Event::listen('Illuminate\Database\Events\QueryExecuted', function ($query) {
var_dump($query->sql);
var_dump($query->bindings);
var_dump($query->time);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment