@php $rowScope = $isSharedVariable ? 'shared' : (data_get($env, 'is_preview') ? 'preview' : 'production'); $rowScopeLabel = $isSharedVariable ? str($type)->headline() : ($rowScope === 'preview' ? 'Preview' : 'Production'); $canUpdate = auth()->user()?->can('update', $this->env) ?? false; $canEditValue = $canUpdate && !$isLocked && !$isDisabled && !$isValueHidden; $showValueType = !$is_redis_credential && !$isMagicVariable; $showInterpolation = !$is_redis_credential && !$isMagicVariable && !$isSharedVariable; $showBuildtime = !$is_redis_credential && !$isMagicVariable && !$isSharedVariable; $showRuntime = !$is_redis_credential && !$isMagicVariable && !$isSharedVariable; @endphp