@php $isEdit = $isEdit ?? 0; $isAutomated = $isAutomated ?? 0; $isPopup = $isPopup ?? 0; $isSend = $isSend ?? 0; $automatedTypes = config("system.automated_types"); $dispatchTypes = config("system.notification_dispatch_type"); if ($isAutomated == 1) { $message = $automated->smsTemplate ?? null ; $failMessage = $automated->sms_template_id == 0 ? "발송할 알림톡을 설정해주세요" : "" ; $isDisabled = $automated->activated; } else { $failMessage = $message?->fail_message; $isDisabled = $message?->activated; } $dispatch = $message?->smsDispatches; @endphp