28 lines
719 B
PHP
28 lines
719 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Factories\Engelsystem\Models;
|
|
|
|
use Engelsystem\Models\News;
|
|
use Engelsystem\Models\User\User;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class NewsFactory extends Factory
|
|
{
|
|
/** @var string */
|
|
protected $model = News::class; // phpcs:ignore
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'title' => $this->faker->text(50),
|
|
'text' => $this->faker->realText(),
|
|
'is_meeting' => $this->faker->boolean(),
|
|
'is_pinned' => $this->faker->boolean(.1),
|
|
'is_important' => $this->faker->boolean(.1),
|
|
'user_id' => User::factory(),
|
|
];
|
|
}
|
|
}
|