Skip to content

Instantly share code, notes, and snippets.

@monaye
Created October 1, 2018 13:09
Show Gist options
  • Select an option

  • Save monaye/5ad6e28abf35e46cc38c2d7fa91f4655 to your computer and use it in GitHub Desktop.

Select an option

Save monaye/5ad6e28abf35e46cc38c2d7fa91f4655 to your computer and use it in GitHub Desktop.
Show Lalavel Query Details if passed in URL
if (env('APP_ENV') === 'local') {
\DB::connection()->enableQueryLog();
\Event::listen('kernel.handled', function ($request, $response) {
if ( $request->has('sql-debug') ) {
$queries = \DB::getQueryLog();
dd($queries);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment