create()->each(function ($u) { if($u->type == 'single'){ $u->profileCourtship()->save(factory(App\Models\ProfileCourtship::class)->make()); }else if($u->type == 'marriage'){ $u->profileMarriage()->save(factory(App\Models\ProfileMarriage::class)->make()); } }); } }