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.

AccountFactory.php 521B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Database\Factories\Accounting;
  3. use App\Models\Accounting\Account;
  4. use Illuminate\Database\Eloquent\Factories\Factory;
  5. /**
  6. * @extends Factory<Account>
  7. */
  8. class AccountFactory extends Factory
  9. {
  10. /**
  11. * The name of the factory's corresponding model.
  12. */
  13. protected $model = Account::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. }