12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace App\Http\Home;
- use App\Services\Eav\MaterialService;
- use App\Services\Elastic\Facades\ES;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Carbon;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Request;
- use Illuminate\Support\Facades\Schema;
- class SoftcenterController extends HttpBaseController
- {
- public function __construct()
- {
- parent::__construct();
- }
- /**
- * 购买
- */
- public function index()
- {
- $list = DB::table('product')->get();
- return view('home/http/softcenter', ['list' => $list]);
- }
- /**
- * 电子书
- */
- public function XYEbook()
- {
- return view('home/http/softebook');
- }
- }
|