Skip to content

Instantly share code, notes, and snippets.

@lfbittencourt
Last active December 29, 2016 12:33
Show Gist options
  • Save lfbittencourt/ad31783bba4b4e952f0e to your computer and use it in GitHub Desktop.
Save lfbittencourt/ad31783bba4b4e952f0e to your computer and use it in GitHub Desktop.
How to log queries in Laravel 5
<?php
\DB::enableQueryLog();
$foo = Foo::find(1);
dd(\DB::getQueryLog());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment