fix:시나리오 모달 include에서 prospect 모드 변수 전달 수정

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-01-31 19:38:46 +09:00
parent fcb3a65cf7
commit 97dfbbff45

View File

@@ -200,7 +200,9 @@ class="w-full flex items-center gap-3 px-3 py-3 rounded-r-lg text-left transitio
@include('sales.modals.scenario-step', [
'step' => collect($steps)->firstWhere('id', $currentStep),
'steps' => $steps,
'tenant' => $tenant,
'tenant' => $isProspectMode ? null : $entity,
'prospect' => $isProspectMode ? $entity : null,
'isProspect' => $isProspectMode,
'scenarioType' => $scenarioType,
'progress' => $progress,
'icons' => $icons,