We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SeedCommand
1 parent 5064292 commit 59b1dffCopy full SHA for 59b1dff
src/Illuminate/Database/Console/Seeds/SeedCommand.php
@@ -68,9 +68,13 @@ public function handle()
68
$this->resolver->setDefaultConnection($this->getDatabase());
69
70
Model::unguarded(function () {
71
- $this->getSeeder()->__invoke();
+ $seeder = $this->getSeeder();
72
+
73
+ $this->components->task(get_class($seeder), $seeder);
74
});
75
76
+ $this->output?->writeln('');
77
78
if ($previousConnection) {
79
$this->resolver->setDefaultConnection($previousConnection);
80
}
0 commit comments