1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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');
- }
- /**
- * 拼音
- */
- public function XYPinyin()
- {
- return view('home/http/softpinyin');
- }
- /**
- * 图片
- */
- public function XYImage()
- {
- return view('home/http/softimage');
- }
- /**
- * 音频
- */
- public function XYAudio()
- {
- return view('home/http/softaudio');
- }
- /**
- * 视频
- */
- public function XYVideos()
- {
- return view('home/http/softvideos');
- }
- /**
- * 文件
- */
- public function XYRename()
- {
- return view('home/http/softrename');
- }
- }
|