fix: Update FAQ rendering to allow HTML content and correct numbering in tab buttons
This commit is contained in:
@@ -176,7 +176,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<div class="py-40">
|
<div class="py-40">
|
||||||
{{ $child->faqs ?? '' }}
|
{!! $child->faqs ?? '' !!}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@@ -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>
|
||||||
|
Reference in New Issue
Block a user