//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
I have a website required to change views root path when it detects mobile phone.
-
I have mobile phone detection function inside of Helpers
-
I wish to run this inside of middleware
-
is that possible to disable this middleware from config? (config/setting.php)
via Benjamin W