36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Department;
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DepartmentSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$departments = [
|
|
['title' => 'Регистрационный отдел'],
|
|
['title' => 'Маркетинговый отдел'],
|
|
['title' => 'Юридический отдел'],
|
|
['title' => 'Расчетная палата'],
|
|
['title' => 'Заместитель Председателя'],
|
|
['title' => 'Торговый отдел'],
|
|
['title' => 'Draft'],
|
|
['title' => 'Draft'],
|
|
['title' => 'Финансовый мониторинг'],
|
|
['title' => 'Председатель']
|
|
];
|
|
|
|
foreach ($departments as $key => $value) {
|
|
Department::create($value);
|
|
}
|
|
}
|
|
}
|