engelsystem/db/factories/FaqFactory.php

24 lines
465 B
PHP
Raw Normal View History

2021-07-10 00:59:20 +02:00
<?php
namespace Database\Factories\Engelsystem\Models;
use Engelsystem\Models\Faq;
use Illuminate\Database\Eloquent\Factories\Factory;
class FaqFactory extends Factory
{
/** @var string */
protected $model = Faq::class;
/**
* @return array
*/
public function definition()
{
return [
'question' => $this->faker->text(100),
'text' => $this->faker->optional(.5, '')->realText(),
];
}
}