Merge pull request #479 from jitendra-webkul/jitendra

Seeder issue fixed
This commit is contained in:
JItendra Singh 2019-01-21 15:52:14 +05:30 committed by GitHub
commit 0df4204fa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,10 +19,10 @@ class DatabaseSeeder extends Seeder
*/
public function run()
{
$this->call(CategorySeeder::class);
$this->call(CoreSeeder::class);
$this->call(InventorySeeder::class);
$this->call(AttributeSeeder::class);
$this->call(CategorySeeder::class);
$this->call(UserSeeder::class);
$this->call(CustomerSeeder::class);
}