Hello.
After installing the package on Laravel 9 and adding the package in provider array into config/app.php:
\Devaslanphp\AutoTranslate\AutoTranslateProvider::class,
When I try to publish package doing this:
php artisan vendor:publish --tag=auto-translate-config
I get this error:
In AutoTranslateProvider.php line 10:
Class "Spatie\LaravelPackageTools\PackageServiceProvider" not found
But when I comment it like this:
// \Devaslanphp\AutoTranslate\AutoTranslateProvider::class,
And repeat this:
php artisan vendor:publish --tag=auto-translate-config
I get:
INFO No publishable resources for tag [auto-translate-config].
How to fix this error ???