1.

How to get client IP address in Laravel 5?

Answer»

You can USE request()->IP();

You can ALSO use : Request::ip() but in this case, we have to CALL namespace like this: Use Illuminate\Http\Request;



Discussion

No Comment Found