Using factories with relationships

When using factories with relationships, Laravel also provides magic methods.

// magic factory relationship methods
User::factory()->hasPosts(3)->create();
 
// instead of
User::factory()->has(Post::factory()->count(3))->create();

Tip given by @oliverds_

Recent New Courses