ItSolutionStuff.com

How to Get Base URL in Laravel?

By Hardik Savani • April 16, 2024
Laravel

Hey,

In this comprehensive tutorial, we will learn how to get site url in laravel. you will learn laravel get base url in blade. you can understand a concept of laravel get base url in controller. This article will give you a simple example of laravel get base url in view. Alright, let us dive into the details.

You can use this example with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 versions.

In this example, i will give you simple two examples to getting base url in blade and controller file using laravel URL facade. so, let's see the simple example code:

Example 1: Laravel Get Base URL in Controller File

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use URL;

class DemoController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index(Request $request)

{

/* Get Base URL using URL Facade */

$url = URL::to("/");

/* Get Base URL using url() helper */

$url2 = url('/');

dd($url, url2);

}

}

Output:

https://yourdomain.com

https://yourdomain.com

Example 2: Laravel Get Base URL in Blade File

{{ URL::to("/") }}

{{ url('/') }}

Output:

https://yourdomain.com

https://yourdomain.com

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel Redirect to Route from Controller Example

Read Now →

Laravel Ajax DELETE Request Example Tutorial

Read Now →

Laravel Ajax GET Request Example Tutorial

Read Now →

Laravel 9 Ajax Request Example Tutorial

Read Now →

Laravel React JS Axios Post Request Example Tutorial

Read Now →

How to Check Request is Ajax or Not in Laravel?

Read Now →

Laravel Get Route Parameters in Middleware Example

Read Now →

How to Check Request Method is GET or POST in Laravel?

Read Now →

How to Check User Login or Not in Laravel?

Read Now →

How to Make Custom Middleware in Laravel?

Read Now →

How to Get Current Route Name in Laravel?

Read Now →

How to Redirect Route with Querystring in Laravel?

Read Now →