php - laravel IlluminateRoutingUrlGenerator error in artisan ← (PHP, Laravel)

I use php artisan command but I see this error.
this error show in all artisan commands

Argument 2 passed to Illuminate\Routing\UrlGenerator::__construct() must be an instance of Illuminate\Http\Reque   
      st, null given, called in E:\appoo\vendor\laravel\framework\src\Illuminate\Routing\RoutingServiceProvider.php
      on line 65

How can I solve this problem?

Answer



Solution:

Please make sure that you are not using any url() or asset() or other helpers functions inside your configuration files

Source