| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- use Illuminate\Database\Seeder;
- class DatabaseSeeder extends Seeder
- {
- /**
- * Run the database seeds.
- *
- * @return void
- */
- public function run()
- {
-
-
- $this->call(AdvertsTableSeeder::class);
- $this->call(ArticleTagTableSeeder::class);
- $this->call(ArticlesTableSeeder::class);
- $this->call(CategoriesTableSeeder::class);
- $this->call(DistrictsTableSeeder::class);
- $this->call(IconsTableSeeder::class);
- $this->call(MembersTableSeeder::class);
- $this->call(MessagesTableSeeder::class);
- $this->call(ModelHasPermissionsTableSeeder::class);
- $this->call(ModelHasRolesTableSeeder::class);
- $this->call(PermissionsTableSeeder::class);
- $this->call(PositionsTableSeeder::class);
- $this->call(RoleHasPermissionsTableSeeder::class);
- $this->call(RolesTableSeeder::class);
- $this->call(SitesTableSeeder::class);
- $this->call(TagsTableSeeder::class);
- $this->call(UsersTableSeeder::class);
- }
- }
|