send post request using guzzle and laravel 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: post request data not getting from guzzle laravel
use Illuminate\Support\Facades\Http;
Http::fake();
$response = Http::post(...);