*/ class AdminPresetFactory extends Factory { /** * Define the model's default state. * * @return array */ public function definition(): array { return [ 'key' => 'test.'.fake()->unique()->slug(), 'area' => 'test', 'type' => 'text', 'label' => fake()->sentence(3), 'value' => fake()->paragraph(), 'payload' => null, 'is_active' => true, ]; } }