| 1234567891011121314151617181920212223 |
- <?php
- use Illuminate\Database\Seeder;
- class DatabaseSeeder extends Seeder
- {
- /**
- * Run the database seeds.
- *
- * @return void
- */
- public function run()
- {
- $this->call(AdminUsersTableSeeder::class);
- $this->call(AdminMenusTableSeeder::class);
- $this->call(AdminRolesTableSeeder::class);
- $this->call(AdminPermissionsTableSeeder::class);
- $this->call(AdminRoleUserTableSeeder::class);
- $this->call(AdminRoleMenuTableSeeder::class);
- $this->call(AdminPermissionMenuTableSeeder::class);
- $this->call(AdminPermissionRoleTableSeeder::class);
- }
- }
|