https://twill.io logo
And here it always shows the title from the main l...
# ❓questions
j
And here it always shows the title from the main lang and not the correct one if i'm on a different lang: Edit: slug does work correctly so im confused.
Copy code
@foreach ($services as $service)
                <a href="{{ route('dienst', $service->slug) }}">
                    <div
                        class="relative flex flex-row items-center justify-between py-4 pl-6 pr-4 mb-5 bg-white card-shadow hover:shadow-md rounded-xl ">
                        <div class="flex flex-row items-center gap-4">
                            <img src="{{ $service->file('icon') }}" class="w-8 h-8">
                            <h5 class="mb-0">{!! $service->title !!}</h5>
                        </div>
                        <span class="flex items-center justify-center w-12 h-12 bg-orange aspect-square rounded-xl">
                            <svg class="-rotate-90 brightness-0 invert" xmlns="http://www.w3.org/2000/svg" width="14"
                                height="8" viewBox="0 0 14 8">
                                <path id="Path_20" data-name="Path 20"
                                    d="M10.719-6.719A1.043,1.043,0,0,1,11-6a1.043,1.043,0,0,1-.281.719l-6,6A1.043,1.043,0,0,1,4,1,1.043,1.043,0,0,1,3.281.719,1.043,1.043,0,0,1,3,0a1.043,1.043,0,0,1,.281-.719L8.594-6,3.281-11.281A1.043,1.043,0,0,1,3-12a1.043,1.043,0,0,1,.281-.719A1.043,1.043,0,0,1,4-13a1.043,1.043,0,0,1,.719.281Z"
                                    transform="translate(1 -3) rotate(90)" fill="#fa9233" />
                            </svg>
                        </span>

                    </div>
                </a>
            @endforeach
Does anybody have an idea why.