Got the mobile route to work

This commit is contained in:
Sebastian
2020-06-23 06:42:43 +02:00
parent 070ff2e3c6
commit 4ddc765082
6 changed files with 41 additions and 1 deletions
@@ -0,0 +1,35 @@
<?php
namespace App\Providers;
use Illuminate\Http\Response;
use Illuminate\Support\ServiceProvider;
use Jenssegers\Agent\Facades\Agent;
class DetectorServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
Response::macro("detect", function ($view, $args) {
if(Agent::isMobile()) {
return view(config("detector.mobilePath") . "." . $view, $args);
}
return view(config("detector.defaultPath") . "." . $view, $args);
});
}
}