@inject('aclConstant', '\App\Util\AclConstant') @php $maskedValue = maskString( !isset($model->creditApplication) ? $model->getValue($key, $listItem, $language) : $model->creditApplication->getValue($key, $listItem, $language), 6 ); $formName = !isset($model->creditApplication) ? $model->getFormName($key, $listItem, $listIndex, $language) : $model->creditApplication->getFormName($key, $listItem, $listIndex, $language); $modelId = !isset($model->creditApplication) ? $model->getValue('id', $listItem, $language) : $model->creditApplication->getValue('id', $listItem, $language); $html = "
"; $html .= "isRequired($key) . ' ' . $model->isDisabled($key) . " label='" . $model->label($key) . "' data-masked-value='" . $maskedValue . "' data-is-masked='true' />"; if (checkUserPermission($aclConstant::VIEW_MASKED_DATA)) { $html .= "
"; } $html .= '
'; echo $html; @endphp