您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ItemFactory.php 486B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace Database\Factories;
  3. use App\Models\Item;
  4. use Illuminate\Database\Eloquent\Factories\Factory;
  5. /**
  6. * @extends Factory<Item>
  7. */
  8. class ItemFactory extends Factory
  9. {
  10. /**
  11. * The name of the factory's corresponding model.
  12. */
  13. protected $model = Item::class;
  14. /**
  15. * Define the model's default state.
  16. *
  17. * @return array<string, mixed>
  18. */
  19. public function definition(): array
  20. {
  21. return [
  22. //
  23. ];
  24. }
  25. }