diff --git a/resources/views/key_row.blade.php b/resources/views/key_row.blade.php index b8a98833..6f33087f 100644 --- a/resources/views/key_row.blade.php +++ b/resources/views/key_row.blade.php @@ -9,7 +9,7 @@ @endphp @if(is_array($translation) && $isCatalog) - {{ str_repeat(" ", $indent * 4) . $key }} + {!! str_repeat(" ", $indent * 4) . $key !!} @foreach($translation as $key2 => $value2) @include('translation-manager::key_row', [ @@ -21,7 +21,7 @@ @endforeach @else - {{ str_repeat(" ", $indent * 4) . $key }} + {!! str_repeat(" ", $indent * 4) . $key !!} @foreach($locales as $locale) @php $t = isset($translation[$locale]) ? $translation[$locale] : null; @endphp @@ -34,7 +34,7 @@ data-type="textarea" data-pk="{{ $t ? $t->id : 0 }}" data-url="{{ route('translation-manager.edit', $group) }}" - data-title="{{ trans('translation-manager::panel.rows.edit') }}">{{ $t ? htmlentities($t->value, ENT_QUOTES, 'UTF-8', false) : '' }} + data-title="{{ trans('translation-manager::panel.rows.edit') }}">{!! $t ? htmlentities($t->value, ENT_QUOTES, 'UTF-8', false) : '' !!} @endforeach @if($deleteEnabled)