I am using Laravel's Http facade to make requests such as
Http::withHeaders(['user-agent' => 'My User agent'])->retry(3, 500)->get('https://example.com')->body();
And need to use proxy, which as per proxy provider's example should be set like this in case of PHP's curl
curl_setopt($curl, CURLOPT_PROXY, 'aaa');
curl_setopt($curl, CURLOPT_PROXYUSERPWD, 'xxx:xxx');
Can these proxy options be somehow set with Laravel's Http class above?