Skip to content

Instantly share code, notes, and snippets.

@ericlbarnes
Created September 4, 2013 13:04
Show Gist options
  • Save ericlbarnes/6436656 to your computer and use it in GitHub Desktop.
Save ericlbarnes/6436656 to your computer and use it in GitHub Desktop.
Laravel hidden helpers
// DB Dumpers
DB::listen(function($sql)
{
var_dump($sql);
});
Event::listen('laravel.query', function($sql)
{
var_dump($sql);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment