DatabaseSeeder.php 715 B

12345678910111213141516171819202122232425262728
  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(DistrictsTableSeeder::class);
  13. $this->call(IconsTableSeeder::class);
  14. $this->call(MembersTableSeeder::class);
  15. $this->call(ModelHasPermissionsTableSeeder::class);
  16. $this->call(ModelHasRolesTableSeeder::class);
  17. $this->call(PermissionsTableSeeder::class);
  18. $this->call(PositionsTableSeeder::class);
  19. $this->call(RoleHasPermissionsTableSeeder::class);
  20. $this->call(RolesTableSeeder::class);
  21. $this->call(UsersTableSeeder::class);
  22. }
  23. }