Get domain name in laravel

Created at 04-Sep-2021 , By samar

Get domain name in laravel

Through the use of the programming language, we will work together to solve the "Get domain name in laravel" puzzle in this lesson.

There are lots of method available in laravel to get the domain name. You can get domain name in laravel using getHost() and getHttpHost() method on request() helper.
  • Get domain name in laravel using web.php file

    $host = request()->getHttpHost();
    

    Output :

    w3codegenerator.com
    $getHost = request()->getHost();
    

    Output :

    w3codegenerator.com
    $hostwithHttp = request()->getSchemeAndHttpHost();
    

    Output :

    https://w3codegenerator.com 

    Code Example routes\web.php

    Route::get('/get-domain', function(){
        $host = request()->getHttpHost();
        echo $host ."<br/>";
        $getHost = request()->getHost();
        echo $getHost ."<br/>";
        $hostwithHttp = request()->getSchemeAndHttpHost();
        echo $hostwithHttp ."<br/>";
    });
    

    Copy/Paste code in your web.php file and it will return the domain name in laravel on visit http://localhost:8000/get-domain . You can use this code snippet in view and as well as controller file.

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.