How to fix it in Laravel while I'am getting the localhost 127.0.0.1 instead of getting clients real IP address?

280 Views Asked by At

I was trying to get the user IP by using: $request->ip(); but this return me the localhost ip 127.0.0.1 here is my code:

 public function index(Request $request)
    {
        $userIP= $request->ip();
        return view('contact',compact('userIP'));
    }

*How can I get the client or user's real IP address ?

0

There are 0 best solutions below