after I've tried to update all the dependencies of our laravel installation (which started from 5.8) all the way to laravel 9 I'm recently having issues when doing the composer update with the nwidart/laravel-modules.
The error I'm getting is the following:
Class "Illuminate\Foundation\Console\ShowModelCommand" not found
at vendor/nwidart/laravel-modules/src/Commands/ModelShowCommand.php:7
3▕ namespace Nwidart\Modules\Commands;
4▕
5▕ use Illuminate\Foundation\Console\ShowModelCommand;
6▕
➜ 7▕ class ModelShowCommand extends ShowModelCommand
8▕ {
9▕
10▕
11▕ /**
+2 vendor frames
3 [internal]:0
Composer\Autoload\ClassLoader::loadClass("Nwidart\Modules\Commands\ModelShowCommand")
+7 vendor frames
11 artisan:37
Illuminate\Foundation\Console\Kernel::handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
does anyone know how to solve it ?
tried using other versions of the same module but nothing..