setWebsite(__NAMESPACE__); } /** * 首页 */ public function index() { // 帮助中心 $newsList = DB::table('news')->limit(9)->get(); $productList = DB::table('product')->limit(100)->get(); return view('home/http/index', ['newsList' => $newsList, 'productList' => $productList]); } }