'Frontend Dev', 'description' => 'Frontend Developer - specializes in UI/UX and client-side development', ], [ 'name' => 'Backend Dev', 'description' => 'Backend Developer - specializes in server-side logic and APIs', ], [ 'name' => 'QA', 'description' => 'Quality Assurance - tests software and ensures quality standards', ], [ 'name' => 'DevOps', 'description' => 'DevOps Engineer - manages infrastructure, CI/CD, and deployments', ], [ 'name' => 'UX', 'description' => 'UX Designer - designs user experiences and interfaces', ], [ 'name' => 'PM', 'description' => 'Project Manager - manages projects, timelines, and client communication', ], [ 'name' => 'Architect', 'description' => 'Solution Architect - designs system architecture and technical solutions', ], ]; foreach ($roles as $role) { DB::table('roles')->updateOrInsert( ['name' => $role['name']], $role ); } } }