codecamp

路由

在扩展包里加载一个路由文件,只需要在服务提供者里的 boot 方法里使用 include :
根据服务提供者来包含一个路由文件

public function boot()
{
    include __DIR__.'/../../routes.php';
}

注意: 如果您的扩展包里使用了控制器,您必须要确认您在 composer.json 文件里的 auto-load 区块里,是否适当的配置这些控制器。

发布分类文件
配置
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

环境配置

系统服务

哈希

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }