guzzlehttp/guzzle laravel get send data code example
Example 1: guzzle post request with data
$response = $client->request('POST', 'http://httpbin.org/post', [
'form_params' => [
'field_name' => 'abc',
'other_field' => '123',
'nested_field' => [
'nested' => 'hello'
]
]
]);
Example 2: pass guzzle client data to view laravel
@foreach($clients as $value)
<tr>
<td>{{$value["name"]}}</td>
<td>{{$value["email"]}}</td>
<td>{{$value["number"]}}</td>
</tr>
@endforeach