芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/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); $teams = Team::where('company_id', $companyId)->pluck('id')->toArray(); $designations = Designation::where('company_id', $companyId)->pluck('id')->toArray(); LeaveType::where('company_id', $companyId)->update([ 'department' => json_encode($teams), 'designation' => json_encode($designations), ]); } }