| 1234567891011121314151617181920212223242526272829 | 
							- <?php
 
- use Illuminate\Database\Seeder;
 
- class DatabaseSeeder extends Seeder
 
- {
 
-     /**
 
-      * Run the database seeds.
 
-      *
 
-      * @return void
 
-      */
 
-     public function run()
 
-     {
 
-         $this->call(EmployeesTableSeeder::class);
 
-         $this->call(CustomersTableSeeder::class);
 
-         $this->call(CategoriesTableSeeder::class);
 
-         $this->call(CategoryProductsTableSeeder::class);
 
-         $this->call(MyCountryTableSeeder::class);
 
-         $this->call(MyProvincesTableSeeder::class);
 
-         $this->call(MyCitiesTableSeeder::class);
 
-         $this->call(USCitiesTableSeeder::class);
 
-         $this->call(StatesTableSeeder::class);
 
-         $this->call(CustomerAddressesTableSeeder::class);
 
-         $this->call(CourierTableSeeder::class);
 
-         $this->call(OrderStatusTableSeeder::class);
 
-         $this->call(BrandsTableSeeder::class);
 
-         $this->call(AttributeTableSeeder::class);
 
-     }
 
- }
 
 
  |