*/ class ItemFactory extends Factory { /** * The name of the factory's corresponding model. */ protected $model = Item::class; /** * Define the model's default state. * * @return array */ public function definition(): array { return [ // ]; } }