📅  最后修改于: 2022-03-11 14:54:10.606000             🧑  作者: Mango
commentable();
return [
'body' => $this->faker->paragraph,
'commentable_id' => $commentable::factory(),
'commentable_type' => $commentable,
];
}
public function commentable()
{
return $this->faker->randomElement([
Post::class,
Video::class,
]);
}
}