edms2023/database/seeds/DocumentTypesSeeder.php

24 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2023-09-14 20:59:46 +00:00
<?php
use Illuminate\Database\Seeder;
class DocumentTypesSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('document_types')->insert([
['name' => '{"en":"Law & Regulation", "ru":"Закон и регулирование", "tm":"Kanun we düzgünnama"}', 'description' => '', 'created_at' =>now()],
['name' => '{"en":"Complaint Letter", "ru":"Письмо с жалобой", "tm":"Şikaýat haty"}', 'description' => '', 'created_at' =>now()],
['name' => '{"en":"All general Letter types", "ru":"Все типы документов", "tm":"Umumy hatlar"}', 'description' => '', 'created_at' =>now()],
['name' => '{"en":"Greeting Letter", "ru":"Поздравительные Письма", "tm":"Gutlag Hatlary"}', 'description' => '', 'created_at' =>now()],
// ['name' => '{"en":"Microsoft Word", "ru":"Microsoft Word", "tm":"Microsoft Word"}', 'description' => '', 'created_at' =>now()],
// ['name' => '{"en":"Microsoft Excel", "ru":"Microsoft Excel", "tm":"Microsoft Excel"}', 'description' => '', 'created_at' =>now()],
]);
}
}