*/ class DeviceGroupFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'name' => $this->faker->domainWord(), 'desc' => $this->faker->text(255), 'type' => 'static', ]; } }