Call external API function from controller, LARAVEL 4

Solution:

You can useĀ Guzzle:

Install it:

composer require guzzle/guzzle ~3.0

Create a client setting the base URL:

$client = new \Guzzle\Service\Client('http://api.github.com/users/');

Get your response:

$response = $client->get("users/$username")->send();

And display it:

dd($response);

But if you are trying to follow the MVC pattern, you should not do this directly in your controller, so create a service class, you call from your controller or your repositories, to do this work for you.