24 lines
630 B
PHP
24 lines
630 B
PHP
<?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);
|
|
}
|
|
}
|