Added translation seeder to DatabaseSeeder class

This commit is contained in:
Jitendra Singh 2020-01-29 12:52:06 +05:30
parent 0b67488a0b
commit b4dacd4db6
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ class DatabaseSeeder extends Seeder
$this->call(CurrencyTableSeeder::class);
$this->call(CountriesTableSeeder::class);
$this->call(StatesTableSeeder::class);
$this->call(CountryStateTranslationSeeder::class);
$this->call(ChannelTableSeeder::class);
$this->call(ConfigTableSeeder::class);
}