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.
1 parent cba5d1a commit 692acb4Copy full SHA for 692acb4
src/Console/SeedCommand.php
@@ -4,7 +4,7 @@
4
5
use Illuminate\Console\Command;
6
use Modules\Blog\Database\Seeders\BlogSeeder;
7
-
+use Modules\Blog\Database\Seeders\BlogAclSeeder;
8
class SeedCommand extends Command
9
{
10
protected $signature = 'modular:blog-seed';
@@ -13,9 +13,10 @@ class SeedCommand extends Command
13
14
public function handle(): void
15
16
- $this->info('Running the following command to seed the Blog module:');
+ $this->info('Running the following commands to seed the Blog Module:');
17
18
$this->call(BlogSeeder::class);
19
+ $this->call(BlogAclSeeder::class);
20
21
$this->info('Modular Blog seeded successfully.');
22
}
0 commit comments