Skip to content

Instantly share code, notes, and snippets.

@paulund
Created July 18, 2017 17:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulund/c02962d2b5f1ba485a878a597ec495c8 to your computer and use it in GitHub Desktop.
Save paulund/c02962d2b5f1ba485a878a597ec495c8 to your computer and use it in GitHub Desktop.
Laravel Output DB Debug
/**
* Add the following to routes to output DB data
*/
\Event::listen('Illuminate\Database\Events\QueryExecuted', function ($query) {
echo'<pre>';
echo $query->sql;
var_dump($query->bindings);
var_dump($query->time);
echo'</pre>';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment