Interested in the possibility of implementing the transfer variable to the class when called from the command line
php artisan db:seed --class=MyClass Or when calling from files, in fact the same thing ..
Artisan::call('db:seed', [ 'class' => 'MyClass' ]); Are there any built-in features? Or what to do for this?
How ugly will editing and entering the necessary function in SeedCommand.php be?