select(['brand', 'aid', 'title', 'cover', 'brand as brand_name', 'images', 'description']) ->where('aid', $aid) ->first() ->toArray(); $data['more'] = AppArticle::formatQuery(['images', 'title', 'cover', 'brand_name']) ->where('brand', '=', $data['brand']) ->orderBy('published_at', 'DESC') ->limit(25); return $this->getResponse()->setPageModule($data)->send(); } }