Skip to content

Instantly share code, notes, and snippets.

@RimonEkjon
Forked from ericlbarnes/helpers.php
Last active August 29, 2015 14:05
Show Gist options
  • Save RimonEkjon/1ea16ab29e8eacefb75e to your computer and use it in GitHub Desktop.
Save RimonEkjon/1ea16ab29e8eacefb75e to your computer and use it in GitHub Desktop.
Query Helper
// 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