create(); User::factory()->create([ 'name' => 'Test User', 'email' => 'test@example.com', ])->each(function ($user) { $user->posts()->saveMany( Post::factory() ->count(200) ->make() ); }); // $this->call([ // PostSeeder::class, // ]); } }