fix: Update FAQ rendering to allow HTML content and correct numbering in tab buttons

This commit is contained in:
2025-08-21 12:35:06 +05:45
parent 3bda70472d
commit f6339f909e
2 changed files with 2 additions and 2 deletions

View File

@@ -176,7 +176,7 @@
<div class="py-40"> <div class="py-40">
{{ $child->faqs ?? '' }} {!! $child->faqs ?? '' !!}
</div> </div>

View File

@@ -21,7 +21,7 @@
<li class="px-20 tab-btn cursor-pointer fade {{ $loop->first ? 'show active' : '' }} " <li class="px-20 tab-btn cursor-pointer fade {{ $loop->first ? 'show active' : '' }} "
role="tabpanel" onclick="showTab('tabs_{{ $index + 1 }}')"> role="tabpanel" onclick="showTab('tabs_{{ $index + 1 }}')">
<div class="text-17 font-bold flex gap-10 items-center"> <div class="text-17 font-bold flex gap-10 items-center">
<p class="numbering">1</p> <p class="numbering">{{ $index + 1 }}</p>
{{-- <img class="w-40" src="assets/images/icons/one.svg" alt=""> --}} {{-- <img class="w-40" src="assets/images/icons/one.svg" alt=""> --}}
<h5 class="text-16 p-0 m-0">{{ $child->title }}</h5> <h5 class="text-16 p-0 m-0">{{ $child->title }}</h5>
</div> </div>