In this article, we will see how to get a client's IP address in laravel 9. Many times you need a user IP address in the laravel application. So, here we will learn laravel 9 to get client IP address. An IP (Internet Protocol) address is a unique address that identifies a device on the internet or a local network. An Internet Protocol address (IP address) is a numerical label such as 192.0.2.1 that is connected to a computer network that uses the Internet Protocol for communication.
How To Get Client IP Address In Laravel 9?
You can get an IP address using Request IP, Request getClientIp, and the request helper function.
we will get an IP address using the request. In laravel include use Illuminate\Http\Request; controller. the Request method provides the ip() method.
$clientIP = request()->ip();
dd($clientIP);
public function index(Request $request)
{
dd($request->ip());
}
$clientIP = \Request::ip();
dd($clientIP)
This method can read the client IP address from the "X-Forwarded-For" header. getClientIp() method returns the client IP address.
$clientIP = \Request::getClientIp(true);
dd($clientIP);
You might also like:
- Read Also: Laravel 9 Phone Number Validation Using Regex
- Read Also: How To Get Current User Location In Laravel 9
- Read Also: Laravel 8 cURL HTTP Request Example
- Read Also: How To Run Python Script In Laravel 9