DB::enableQueryLog();//放在需要打印的查询前
User::all(); 
return DB::getQueryLog();//放在查询的后

可以用 dd 直接输出:

dd(DB::getQueryLog());