Laravel 9 How To Detect Device is Mobile or Desktop

Reading Time: 4 minutes
2,988 Views

Inside this article we will see the concept of device detection composer package inside laravel application. Laravel 9 How to detect device is mobile or desktop, we will discuss in this article.

Always developer or designer wants to know that whenever they open application which device is being to used for it. So for this we will use jessenger agent package for device detection.

Additionally, you can use this package to detect or get the whole information of browsers in which your application get executed.

Device detection in application is process in which you will the device information, browser information etc where your application runs.

Learn More –

Let’s get started.

Laravel Installation

Open terminal and run this command to create a laravel project.

composer create-project laravel/laravel myblog

It will create a project folder with name myblog inside your local system.

To start the development server of laravel –

php artisan serve

URL: http://127.0.0.1:8000

Assuming laravel already installed inside your system.

Install jessenger/ajent Package

Open project into terminal and run this command to install this device detection package.

$ composer require jenssegers/agent

It will install jessenger/ajent package inside application.

Next,

We will see how to use this package and get the information.

Usage of Detection Package

Before use of jenssegers/agent package, we need to create an instance.

By using that instance we can call device detection methods.

Object/Instance Creation

$agent = new \Jenssegers\Agent\Agent;

Detect Mobile

$agent->isMobile();

Detect Laptop/Desktop

$agent->isDesktop();

Detect Tablet

$agent->isTablet();

All these methods returns boolean value.

Here, we have a sample code for application to check device.

//...

Route::get('detect-device', function () {

    // object
    $agent = new \Jenssegers\Agent\Agent;

    // laptop/desktop
    $result1 = $agent->isDesktop();

    // mobile
    $result2 = $agent->isMobile();

    // tablet
    $result3 = $agent->isTablet();

    // returns boolean value of each variable
    echo $result1." , ".$result2. " , ".$result3; 
});

//...

Use Agent Methods in Blade Layouts

Also we have an option available when we need to use $agent methods in blade layouts directly.

#Desktop/Laptop
@if((new \Jenssegers\Agent\Agent())->isDesktop())
      DO STUFF
@endif

#Mobile
@if((new \Jenssegers\Agent\Agent())->isMobile())
      DO STUFF
@endif

#Tablet
@if((new \Jenssegers\Agent\Agent())->isTablet())
      DO STUFF
@endif

More Useful Notes About Package

We have lots of methods available by this Agent facade. Using these methods you can know platform, browser, browser version, etc.

$agent->platform();
// Ubuntu, Windows, OS X, ...

$agent->browser();
// Chrome, IE, Safari, Firefox, ...

$browser = $agent->browser();

$version = $agent->version($browser);

$platform = $agent->platform();

$version = $agent->version($platform);

$agent->is('Windows');

$agent->is('Firefox');

$agent->is('iPhone');

$agent->is('OS X');

$agent->isAndroidOS();

$agent->isNexus();

$agent->isSafari();

$agent->languages();
// ['nl-nl', 'nl', 'en-us', 'en']

$agent->device();
// iPhone, Nexus, AsusTablet, ...

$agent->isDesktop();

$agent->isPhone();

$agent->isMobile();

$agent->isTablet();

$agent->isRobot();

$agent->robot();
// robot name

We hope this article helped you to learn Laravel 9 How To Detect Device is mobile or desktop Tutorial in a very detailed way.

Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.

If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.

Sanjay KumarHello friends, I am Sanjay Kumar a Web Developer by profession. Additionally I'm also a Blogger, Youtuber by Passion. I founded Online Web Tutor and Skillshike platforms. By using these platforms I am sharing the valuable knowledge of Programming, Tips and Tricks, Programming Standards and more what I have with you all. Read more