Laravel 로그 남기기 DB 쿼리 로그 남기기 use Illuminate\Support\Facades\Log; DB::enableQueryLog(); $result = DB::table('TB_Test') ->where('idx', $idx) ->update([ 'in_name' => $request->input('in_name'), ]); Log::info(DB::getQueryLog()); Log::info('내용'); /storage/logs/laravel.log 에서 확인 [ Web 관련 ]/Laravel 12.5.0 4년 전