*/ class UserRoleFactory extends Factory { protected $model = UserRole::class; /** * @return array */ public function definition(): array { return [ 'name' => ucfirst($this->faker->unique()->word()), 'description' => $this->faker->sentence(), ]; } }