Laravel 9 Get Client IP Address Example

By Hardik Savani November 5, 2023 Category : Laravel

In this short tutorial we will cover an laravel 9 get client ip address. you'll learn laravel 9 get ip address. We will use how to get ip address in laravel 9. you can see how to get client ip address in laravel 9. Alright, let’s dive into the steps.

Here, I will give 4 ways to get client's IP Addresses in the laravel 9 application.

Example 1:

$clientIP = request()->ip();

dd($clientIP);

Example 2:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class UserController extends Controller

{

/**

* Display a listing of the resource.

*

* @return \Illuminate\Http\Response

*/

public function index(Request $request)

{

$clientIP = $request->ip();

dd($clientIP);

}

}

Example 3:

$clientIP = \Request::ip();

dd($clientIP);

Example 4:

$clientIP = \Request::getClientIp(true);

dd($clientIP);

i hope it can help you...

Shares