'https://official-en.aiacademy.tw/uploads/2025/10/placeholder-portrait.jpg', 'name' => 'Dr. John Smith', 'title' => 'Chairman', 'positions' => "Board Director\r\nChairman of the Board\r\nStrategic Planning Committee", 'text' => 'Dr. John Smith has over 20 years of experience in AI research and development. He holds a Ph.D. in Computer Science from MIT and has published numerous papers on machine learning and neural networks.', 'sort' => 1, 'member_type' => 'board', 'status' => 'publish', ], [ 'portrait' => 'https://official-en.aiacademy.tw/uploads/2025/10/placeholder-portrait.jpg', 'name' => 'Ms. Emily Chen', 'title' => 'Vice Chairperson', 'positions' => "Board Director\r\nVice Chairperson\r\nAudit Committee Chair", 'text' => 'Ms. Emily Chen is a renowned expert in AI ethics and governance. She has served as an advisor to multiple international organizations on responsible AI development.', 'sort' => 2, 'member_type' => 'board', 'status' => 'publish', ], [ 'portrait' => 'https://official-en.aiacademy.tw/uploads/2025/10/placeholder-portrait.jpg', 'name' => 'Prof. Michael Wang', 'title' => 'Board Director', 'positions' => "Board Director\r\nEducation Committee Chair\r\nResearch Advisory Board", 'text' => 'Professor Michael Wang is a distinguished academic with expertise in deep learning and natural language processing. He currently teaches at National Taiwan University.', 'sort' => 3, 'member_type' => 'board', 'status' => 'publish', ], ]; // Executive Members (執行成員) - 3 members $executiveMembers = [ [ 'portrait' => 'https://official-en.aiacademy.tw/uploads/2025/10/placeholder-portrait.jpg', 'name' => 'Dr. James Chang', 'title' => 'Chief Executive Officer', 'positions' => "Chief Executive Officer\r\nExecutive Committee Chair\r\nOperations Leadership", 'text' => 'Dr. James Chang leads the strategic direction and day-to-day operations of the AI Academy. With a background in both academia and industry, he bridges research and practical application.', 'sort' => 1, 'member_type' => 'executive', 'status' => 'publish', ], [ 'portrait' => 'https://official-en.aiacademy.tw/uploads/2025/10/placeholder-portrait.jpg', 'name' => 'Ms. Rachel Wu', 'title' => 'Chief Technology Officer', 'positions' => "Chief Technology Officer\r\nTechnology Innovation Lead\r\nR&D Department Head", 'text' => 'Ms. Rachel Wu oversees all technology development and innovation initiatives. She has a proven track record of leading successful AI product launches.', 'sort' => 2, 'member_type' => 'executive', 'status' => 'publish', ], [ 'portrait' => 'https://official-en.aiacademy.tw/uploads/2025/10/placeholder-portrait.jpg', 'name' => 'Mr. Kevin Huang', 'title' => 'Chief Operating Officer', 'positions' => "Chief Operating Officer\r\nOperations Management\r\nQuality Assurance", 'text' => 'Mr. Kevin Huang manages the operational aspects of the organization, ensuring efficient delivery of programs and services to students and partners.', 'sort' => 3, 'member_type' => 'executive', 'status' => 'publish', ], ]; // Insert board members foreach ($boardMembers as $member) { Member::create($member); } // Insert executive members foreach ($executiveMembers as $member) { Member::create($member); } $this->command->info('Successfully seeded ' . count($boardMembers) . ' board members and ' . count($executiveMembers) . ' executive members.'); } }