2021-06-06 18:22:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class ApplicationApiFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
2023-01-05 17:01:42 +00:00
|
|
|
'memo' => $this->faker->word(),
|
2021-06-06 18:22:40 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|