| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- // +----------------------------------------------------------------------
- // | Laravel框架 [ Laravel ]
- // +----------------------------------------------------------------------
- // | 版权所有 2017~2021 Laravel研发中心
- // +----------------------------------------------------------------------
- // | 官方网站: http://www.laravel.cn
- // +----------------------------------------------------------------------
- // | Author: wesmiler <12345678@qq.com>
- // +----------------------------------------------------------------------
- namespace App\Http\Controllers;
- use App\Services\FoxiangCatesService;
- /**
- * 佛像分类管理-控制器
- * @author wesmiler
- * @since 2020/11/11
- * Class FoxiangCatesController
- * @package App\Http\Controllers
- */
- class FoxiangCatesController extends Backend
- {
- /**
- * 构造函数
- * @author wesmiler
- * @since 2020/11/11
- * FoxiangCatesController constructor.
- */
- public function __construct()
- {
- parent::__construct();
- $this->service = new FoxiangCatesService();
- }
- /**
- * 获取分类选项列表
- * @return array
- */
- public function options(){
- return $this->service->getOptions();
- }
- }
|