butschster / LaravelMetaTags

The most powerful and extendable tools for managing SEO Meta Tags in your Laravel project
MIT License
540 stars 50 forks source link

Fix Class Butschster\Head\Console\ServiceProvider not found for L11 #68

Closed jadenjoy closed 2 months ago

jadenjoy commented 2 months ago

The line ServiceProvider::addProviderToBootstrapFile("{$namespace}\\Providers\\MetaTagsServiceProvider");tries to find ServiceProvider in the namespace Butschster\Head\Console, which causes an error "Class "Butschster\Head\Console\ServiceProvider" not found in Laravel 11. Added use Illuminate\Support\ServiceProvider; to the file. Fix tested on Laravel 11 and Laravel 10.

butschster commented 2 months ago

@jadenjoy Thx