@dmag Please try:
$response = Http::withoutVerifying()
->withOptions(["verify"=>false])
->post($url,$fields);
Source: https://stackoverflow.com/questions/68072879/how-to-disable-ssl-check-with-laravel-http-post
Summer Sale! All accounts are 50% off this week.
How can I disable verifying of ssl for all http requests made with Laravel's Http facade when running Laravel (phpunit) tests on external APIs?
Please or to participate in this conversation.