Laravel Unresolvable dependency resolving [Parameter #0 [ <required> $method ]] in class GuzzleHttp\Psr7\Request

I had the same error and found solution by removing following line.

use GuzzleHttp\Psr7\Request;

and use following Request class instead.

use Illuminate\Http\Request;

I hope it will help you too.


I have also faced same error like in Laravel

Unresolvable dependency resolving [Parameter #0 [ $method ]] in class GuzzleHttp\Psr7\Request.

But when I changed

use GuzzleHttp\Psr7\Request; 

to

use Illuminate\Http\Request;

then the problem was gone.