Skip to content

Instantly share code, notes, and snippets.

@mwleinad
Created March 13, 2020 15:34
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 mwleinad/9a748fb8c93f8bc17fd9adff57624c9b to your computer and use it in GitHub Desktop.
Save mwleinad/9a748fb8c93f8bc17fd9adff57624c9b to your computer and use it in GitHub Desktop.
Log last executed query in laravel
<?php
\DB::connection()->enableQueryLog();
//Eloquent or db query.
$query = \DB::getQueryLog();
$lastQuery = end($query);
\Log::info($lastQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment