I am facing an issue in a laravel project. It's showing this error
Fatal Error : Class 'Guzzle\Http\Client' not found
I have Guzzle installed and added to configuration file. Also I have added the use GuzzleHttp\Client; in my Controller but still its showing the error.
This is the code am using:
$client = new GuzzleHttp\Client();
Anyone please help. Thanks
composer require guzzlehttp/guzzleuse GuzzleHttp\Client;and to call it in your function use this;$client = new Client();