mirror of
https://github.com/dyzulk/santulitam-temp.git
synced 2026-01-26 13:51:55 +07:00
32 lines
574 B
PHP
32 lines
574 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Theme;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
|
|
class ThemeSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
Theme::create([
|
|
'name' => 'KAIZEN',
|
|
'year' => 2022,
|
|
]);
|
|
|
|
Theme::create([
|
|
'name' => 'RENAISANS',
|
|
'year' => 2023,
|
|
]);
|
|
|
|
Theme::create([
|
|
'name' => 'SANTULITAM',
|
|
'year' => 2024,
|
|
]);
|
|
}
|
|
}
|