Skip to content

Commit 692acb4

Browse files
committed
Add the Blog Acl Seeder to the Seed Command.
1 parent cba5d1a commit 692acb4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Console/SeedCommand.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Illuminate\Console\Command;
66
use Modules\Blog\Database\Seeders\BlogSeeder;
7-
7+
use Modules\Blog\Database\Seeders\BlogAclSeeder;
88
class SeedCommand extends Command
99
{
1010
protected $signature = 'modular:blog-seed';
@@ -13,9 +13,10 @@ class SeedCommand extends Command
1313

1414
public function handle(): void
1515
{
16-
$this->info('Running the following command to seed the Blog module:');
16+
$this->info('Running the following commands to seed the Blog Module:');
1717

1818
$this->call(BlogSeeder::class);
19+
$this->call(BlogAclSeeder::class);
1920

2021
$this->info('Modular Blog seeded successfully.');
2122
}

0 commit comments

Comments
 (0)