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