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;
    }