Laravel Polimorfic Faker
$video = Video::factory()->hasComments(3)->create();
Faithful Fox
$video = Video::factory()->hasComments(3)->create();
$comments = Comment::factory()->count(3)->for(
Video::factory(), 'commentable'
)->create();