ctrlpanel/database/factories/ApplicationApiFactory.php

29 lines
514 B
PHP
Raw Normal View History

<?php
namespace Database\Factories;
use App\Models\ApplicationApi;
use Illuminate\Database\Eloquent\Factories\Factory;
class ApplicationApiFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = ApplicationApi::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
2021-06-10 17:17:03 +00:00
'memo' => $this->faker->word()
];
}
}