error('Free plan not found. Run db:seed --class=PlanSeeder first.'); return self::FAILURE; } $count = Workspace::whereNull('plan_id')->update(['plan_id' => $freePlan->id]); $this->info("✓ {$count} workspace(s) assigned to Free plan"); return self::SUCCESS; } }