Files
Document-Management-System-…/database/seeds/OrganizeSeeder.php
2021-04-12 07:01:53 -04:00

26 lines
860 B
PHP
Raw 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 OrganizeSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('organizes')->insert([
['id' => 'HS', 'name' => 'ООО"Технопарк"'],
['id' => 'TCHQ', 'name' => 'Федеральная таможенная служба'],
['id' => 'BTC', 'name' => 'Минфин России'],
['id' => 'BCT', 'name' => 'Минпромторг России'],
['id' => 'VPTT', 'name' => 'ООО "Абсолют"'],
['id' => 'BTNMT', 'name' => 'Сбербанк России'],
['id' => 'BQP', 'name' => 'Федеральная налоговая служба'],
['id' => 'SHC', 'name' => 'ООО "Сириус'],
]);
}
}