Skip to content

Instantly share code, notes, and snippets.

@susilolab
Created November 10, 2023 06:32
Show Gist options
  • Save susilolab/51cfab6b3dfc246a42df9d083144ef32 to your computer and use it in GitHub Desktop.
Save susilolab/51cfab6b3dfc246a42df9d083144ef32 to your computer and use it in GitHub Desktop.
Log query beserta paramternya pada query builder di laravel 10
<?php
// Sebelum query aktifkan log query
DB::enableQueryLog();
$query = DB::table('demo')->where('id', '=', 1);
// Setelah query get lognya.
Log::error(print_r(DB::getQueryLog(), true));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment