ApplicationApiFactory.php 341 B

1234567891011121314151617181920
  1. <?php
  2. namespace Database\Factories;
  3. use Illuminate\Database\Eloquent\Factories\Factory;
  4. class ApplicationApiFactory extends Factory
  5. {
  6. /**
  7. * Define the model's default state.
  8. *
  9. * @return array
  10. */
  11. public function definition()
  12. {
  13. return [
  14. 'memo' => $this->faker->word(),
  15. ];
  16. }
  17. }