Skip to content

Instantly share code, notes, and snippets.

@hasinhayder
Last active May 20, 2020 19:16
Show Gist options
  • Save hasinhayder/116959f6d1a2df91a0cb11eb515fb569 to your computer and use it in GitHub Desktop.
Save hasinhayder/116959f6d1a2df91a0cb11eb515fb569 to your computer and use it in GitHub Desktop.
display all the queries being executed in laravel
<?php
/* add a listener to display all the queries being executed in laravel */
DB::listen( function ( $query ) {
var_dump( $query->sql );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment