https://twill.io logo
Hi, When doing the following in a multilingual si...
# ❓questions
j
Hi, When doing the following in a multilingual site i only get the title from the main lang if im on the other lang i get nothing for title. Icon does work:
Copy code
@php $renderedModule = $renderData->model; @endphp
            @if (null !== $renderedModule->file('icon'))
                <div class="flex items-center mb-6 gap-2">
                    <img src="{{ $renderedModule->file('icon') }}" class="w-8 h-8 mr-2">
                    <span class="mb-0 text-base font-bold uppercase text-orange">{!! $renderedModule->title !!}</span>

                </div>
            @endif