first(); $sections = [ ['module_id' => $pure->id, 'title' => 'Year 1', 'order' => 1], ['module_id' => $pure->id, 'title' => 'Year 2', 'order' => 2], ]; foreach ($sections as $section) { LessonSection::updateOrCreate( ['module_id' => $section['module_id'], 'title' => $section['title']], $section ); } } }