Owl\Http\ViewComposers\MailNotifySettingComposer::renderHtml PHP 메소드

renderHtml() 보호된 메소드

Configに合わせてメール通知HTMLコンポーネントを返す
protected renderHtml ( ) : Illuminate\View\View | null
리턴 Illuminate\View\View | null | null
    protected function renderHtml()
    {
        if ($this->notifyEnable) {
            $notifyFlags = $this->mailNotifyService->getSettings($this->userService->getCurrentUser()->id);
            return view('user.edit._mail-notify', compact('notifyFlags'))->render();
        }
        return null;
    }