Skip to content

Commit

Permalink
update init command
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezahamedashki committed May 27, 2018
1 parent 72f60d9 commit c3f7dd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Console/InitCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public function handle()
$this->info('Execute migrate first, migrating ...');
$this->call('migrate');
$this->info('Seeding Data ...');
$this->call('db:seed', ["--class" => "ProvincesTablesSeeder"]);
$this->call('db:seed', ["--class" => "CountiesTablesSeeder"]);
$this->call('db:seed', ["--class" => "CitiesTablesSeeder"]);
$this->call('db:seed', ["--class" => "ProvincesTableSeeder"]);
$this->call('db:seed', ["--class" => "CountiesTableSeeder"]);
$this->call('db:seed', ["--class" => "CitiesTableSeeder"]);
$this->info('Done!');
}
}

0 comments on commit c3f7dd9

Please sign in to comment.