DB::enableQueryLog();
dd(DB::getQueryLog()); #output last executed queries
DB::table('users')->toSql() #show the generated sql statement
DB::table('users')->getQuery()->wheres #show wheres conditions
debug($object1, $object2)
php artisan tinker
psysh
php artisan routes
$deployLog = new Logger('deploy-log');
$deployLog->pushHandler(new StreamHandler(storage_path().'/logs/deploy.log', Logger::INFO));
$deployLog->addInfo('Deployed!');