【发布时间】:2017-04-13 18:31:10
【问题描述】:
//middleware
if ( Helpers::isMobile() ) {
//how to change view path root here, from views -> views/mobile
}
//desktop layout
/views/index.blade.php
//mobile layout
/views/mobile/index.blade.php
我有一个网站需要在检测到手机时更改视图根路径。
Helper里面有手机检测功能
我希望在中间件中运行它
是否可以从配置中禁用此中间件? (config/setting.php)
【问题讨论】: