*/ class ProjectFactory extends Factory { /** * @return array */ public function definition(): array { return [ 'tenant_id' => Tenant::factory(), 'name' => fake()->words(3, true), 'type' => 'webhook', 'is_active' => true, 'daily_limit_target' => 10, 'region_mask' => 255, 'region_mode' => 'include', 'delivery_days_mask' => 127, 'assignment_strategy' => 'manual', 'ttfr_target_minutes' => 15, ]; } }