📅  最后修改于: 2022-03-11 14:54:39.352000             🧑  作者: Mango
$antiques = DB::table('antiques')
->join('images', 'images.antiques_id', '=', 'antiques.id')
->latest()
->limit(20)
->get(['antiques.*', 'images.path']);