You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DocumentTotalFactory.php 557B

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