// +---------------------------------------------------------------------- namespace App\Http\Controllers; use App\Services\SignCatesService; /** * 库房商品分类管理-控制器 * @author wesmiler * @since 2020/11/11 * Class StoreCatesController * @package App\Http\Controllers */ class StoreCatesController extends Backend { /** * 构造函数 * @author wesmiler * @since 2020/11/11 * StoreCatesController constructor. */ public function __construct() { parent::__construct(); $this->service = new SignCatesService(); } /** * 获取分类选项列表 * @return array */ public function options(){ return $this->service->getOptions(); } }