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