Skip to content

Instantly share code, notes, and snippets.

@mostafa6765
Last active September 18, 2017 17:35
Show Gist options
  • Save mostafa6765/146a261640047c3bf23928c68abaa528 to your computer and use it in GitHub Desktop.
Save mostafa6765/146a261640047c3bf23928c68abaa528 to your computer and use it in GitHub Desktop.
<? php
public function index()
{
$url = 'https://api.github.com/repos/code4mk/dev';
$http = new \GuzzleHttp\Client(['verify' => false]);
$json = $http->get($url, ['timeout' => 30])->getBody()->getContents();
$posts = $json;
$tests = json_decode($posts);
return view('home')->withTests($tests);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment