123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Http\Home;
- use App\Mail\SysErrorNotice;
- use Illuminate\Support\Facades\Log;
- use Illuminate\Support\Facades\Mail;
- use Illuminate\Support\Facades\Request;
- use Illuminate\Support\Facades\DB;
- class IndexController extends HttpBaseController
- {
- public function __construct()
- {
- parent::__construct();
- $this->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]);
- }
- }
|