@if ($agent->isMobile())
Show mobile stuff...
@endif
//Follow this link for full metod
// https://github.com/jenssegers/agent
<?php
use JenssegersAgentAgent as Agent;
$Agent = new Agent();
// agent detection influences the view storage path
if ($Agent->isMobile()) {
// you're a mobile device
$viewPath = __DIR__.'/../mobile';
} else {
// you're a desktop device, or something similar
$viewPath = __DIR__.'/../views';
}
return array(
'paths' => array($viewPath),
.....