bulk seed in laravel with update or create

PHP
#All of them
php artisan db:seed
#One class
php artisan db:seed --class=UserSeeder$fullClassName = "Nitseditor\\Plugins\\${pluginName}\\Databases\\seeds\\InstallSeeder";

Artisan::call("db:seed", ['--class' => $class]);
Source

Also in PHP: