*/ class MessageFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition() { return [ 'title' => $this->faker->realText($maxNbChars = 20, $indexSize = 2), 'content' => $this->faker->realText($maxNbChars = 100, $indexSize = 2), 'writer' => $this->faker->randomElement(User::query()->get('id')), ]; } }