DatabaseSeeder.php 902 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. use Illuminate\Database\Seeder;
  3. class DatabaseSeeder extends Seeder
  4. {
  5. /**
  6. * Run the database seeds.
  7. *
  8. * @return void
  9. */
  10. public function run()
  11. {
  12. $this->call(EmployeesTableSeeder::class);
  13. $this->call(CustomersTableSeeder::class);
  14. $this->call(CategoriesTableSeeder::class);
  15. $this->call(CategoryProductsTableSeeder::class);
  16. $this->call(MyCountryTableSeeder::class);
  17. $this->call(MyProvincesTableSeeder::class);
  18. $this->call(MyCitiesTableSeeder::class);
  19. $this->call(USCitiesTableSeeder::class);
  20. $this->call(StatesTableSeeder::class);
  21. $this->call(CustomerAddressesTableSeeder::class);
  22. $this->call(CourierTableSeeder::class);
  23. $this->call(OrderStatusTableSeeder::class);
  24. $this->call(BrandsTableSeeder::class);
  25. $this->call(AttributeTableSeeder::class);
  26. }
  27. }