forked from aslan/applicant-site
34 lines
884 B
PHP
34 lines
884 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class SubjectSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
DB::table('subjects')->insert([
|
|
[
|
|
'name' => 'Обществознание',
|
|
'description' => 'social studies',
|
|
'position' => '1',
|
|
'slug' => 'social-studies',
|
|
],
|
|
[
|
|
'name' => 'Русский язык',
|
|
'description' => 'a Russian language course',
|
|
'position' => '2',
|
|
'slug' => 'russian-language',
|
|
],
|
|
[
|
|
'name' => 'математика',
|
|
'description' => 'mathematics',
|
|
'position' => '3',
|
|
'slug' => 'mathematics',
|
|
],
|
|
]);
|
|
}
|
|
}
|