engelsystem/db/factories/FaqFactory.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
451 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; // phpcs:ignore
public function definition(): array
{
return [
'question' => $this->faker->text(100),
'text' => $this->faker->optional(.5, '')->realText(),
];
}
}