Laravel - HTTP Client - Sending Form Url Encoded Requests
If you would like to send data using the application/x-www-form-urlencoded
content type, you should call the asForm
method before making your request:
$response = Http::asForm()->post('http://example.com/users', [
'name' => 'Sara',
'role' => 'Privacy Consultant',
]);