目录app\Providers\AppServiceProvider.php

public function boot()
{
    DB::listen(function ($event) {
        $sql = str_replace("?", "'%s'", $event->sql);
        $log = vsprintf($sql, $event->bindings);
        Log::debug($log);
    });
    //
    Schema::defaultStringLength(191);
}

默认目录在storage----logs----Laravel.log

最后修改:2018 年 05 月 25 日
如果觉得我的文章对你有用,请随意赞赏