Skip to content

Instantly share code, notes, and snippets.

@alfredoem
Last active May 17, 2017 16:10
Show Gist options
  • Save alfredoem/9d00571526df24543d9b4d8345bdd316 to your computer and use it in GitHub Desktop.
Save alfredoem/9d00571526df24543d9b4d8345bdd316 to your computer and use it in GitHub Desktop.
Laravel Framework Tricks
<?php
#Last Query
\DB::enableQueryLog();
// code request
$query = \DB::getQueryLog();
$lastQuery = end($query);
\Log::info(json_encode($lastQuery));
#Last Query Multiple connection
\DB::connection('other-name')->enableQueryLog();
// code request
$query = \DB::connection('other-name')->getQueryLog();
$lastQuery = end($query);
\Log::info(json_encode($lastQuery));
#Views Cache Clear
php artisan view:clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment