📜  laravel db 外观 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:01.906000             🧑  作者: Mango

代码示例5
$antiques = DB::table('antiques')
    ->join('images', 'images.antiques_id', '=', 'antiques.id')
    ->latest()
    ->limit(20)
    ->get(['antiques.*', 'images.path']);