2024-12-02 01:18:34 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Seed the application's database.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function run()
|
|
|
|
|
{
|
|
|
|
|
$this->call(UserSeeder::class);
|
|
|
|
|
$this->call(AdminSeeder::class);
|
|
|
|
|
$this->call(RolePermissionSeeder::class);
|
2024-12-10 10:10:41 +07:00
|
|
|
// $this->call(MenusTableSeeder::class);
|
2024-12-02 01:18:34 +07:00
|
|
|
}
|
|
|
|
|
}
|