laravel $httpClient = HttpClient::class; $response = $httpClient->request code example
Example 1: laravel http client
composer require guzzlehttp/guzzle
Example 2: laravel http client
use Illuminate\Support\Facades\Http;
$response = Http::get('http://test.com');