芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/database/seeders/DepartmentTableSeeder.php
'Marketing', 'company_id' => $companyId], ['team_name' => 'Sales', 'company_id' => $companyId], ['team_name' => 'Human Resources', 'company_id' => $companyId], ['team_name' => 'Public Relations', 'company_id' => $companyId], ['team_name' => 'Research', 'company_id' => $companyId], ['team_name' => 'Finance', 'company_id' => $companyId], ]; $designations = [ ['name' => 'Trainee', 'company_id' => $companyId], ['name' => 'Senior', 'company_id' => $companyId], ['name' => 'Junior', 'company_id' => $companyId], ['name' => 'Team Lead', 'company_id' => $companyId], ['name' => 'Project Manager', 'company_id' => $companyId], ]; Team::insert($departments); Designation::insert($designations); } }