📜  Laravel DB 门面关系 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:39.352000             🧑  作者: Mango

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