edms2023/database/seeds/DocumentTypesSeeder.php

24 lines
1.2 KiB
PHP
Raw Permalink 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
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()],
]);
}
}