[Laravel] 教你如何取得 Query Builder 或 Eloquent ORM 生成的 SQL 語法
想要查看Laravel生成的SQL語法嗎?跟著我一起做就可以了
步驟如下:
先引入DB檔
use Illuminate\Support\Facades\DB;
首先要開啟記錄
DB::connection()->enableQueryLog();
資料庫查詢
$articles = DB::table('articles') ->where('articles.id', 'some_id')->get();
使用 DB::getQueryLog(),為記錄下來的 sql 語法,這邊直接用 dd() 印出
dd(DB::getQueryLog());
留言
張貼留言