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