Files
star-cloud/database/seeders/DatabaseSeeder.php
sky121113 02918ce0e1
All checks were successful
star-cloud-deploy-demo / deploy-demo (push) Successful in 43s
[FEAT] 儀表板中文化、數據動態化及 UI 細節優化
2026-03-09 10:57:22 +08:00

25 lines
537 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace Database\Seeders;
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* 執行全部 Seederphp artisan db:seed
* 執行單一 Seederphp artisan db:seed --class=AdminUserSeeder
*/
public function run(): void
{
$this->call([
AdminUserSeeder::class,
MachineSeeder::class,
MemberSeeder::class,
]);
}
}