Files
izyim/database/seeds/DatabaseSeeder.php
T
2019-01-23 23:53:20 +08:00

24 lines
597 B
PHP

<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run(): void {
if(app()->environment() !== "production"){
//$this->call(CompaniesTableSeeder::class);
//$this->call(AddressBookTableSeeder::class);
//$this->call(ContactsTableSeeder::class);
//$this->call(WarehousesTableSeeder::class);
}
$this->call(PrimaryStepsTableSeeder::class);
$this->call(ModularStepsTableSeeder::class);
}
}