Sagar Gor
Sagar Gor

Reputation: 121

php artisan serve not working giving error In ProviderRepository.php line 208:Class 'Laravelium\Sitemap\SitemapServiceProvider' not found

I'm working for the first time in laravel while setting up the already developed project in my local computer and running php artisan serve i'm getting this error

In ProviderRepository.php line 208:

  Class 'Laravelium\Sitemap\SitemapServiceProvider' not found

Upvotes: 2

Views: 1611

Answers (1)

Amir Kaftari
Amir Kaftari

Reputation: 1504

Issue is resolved by just follow these step. Go to your project > bootstrap->cache->config.php remove the provider and aliases from the cached array manually.

Upvotes: 2

Related Questions