目的:直接输入域名,根据后台设定的默认模块,直接跳转到默认模块的HomeController的index方法,并渲染出相应的视图
- 点击更新缓存按钮后对模块列表数据进行更新
// 新建模块信息存储表
Schema::create('modules', function (Blueprint $table) {
$table->increments('id');
$table->timestamps();
$table->string('title')->comment('模块名称|input');
$table->string('name')->comment('模块标识|input');
$table->text('is_default')->comment('是否是默认模块|radio');
$table->text('front_access')