27 lines
886 B
PHP
27 lines
886 B
PHP
@foreach ($tips as $item)
|
|
<div class="relative hidden lg:block w-4/12 mt-12 xl:mt-9.5 lg:pl-12">
|
|
<div @class([
|
|
'relative leading-4 z-10',
|
|
'ltr:text-right rtl:text-left' => $item->align == 'right',
|
|
'ltr::text-left rtl:text-right' => $item->align == 'left',
|
|
])
|
|
>
|
|
<h2 class="font-bold mb-1">
|
|
{{ $item->title }}
|
|
</h2>
|
|
|
|
<p class="text-sm mb-2">
|
|
{!! $item->description !!}
|
|
</p>
|
|
|
|
<a href="{{ $item->action }}" class="font-light text-sm">
|
|
<x-text.hover text="{{ $item->learn_more }}" color="to-black" />
|
|
</a>
|
|
</div>
|
|
|
|
<div class="absolute ltr:right-0 rtl:left-0 -top-4">
|
|
<img src="{{ $item->thumb }}" alt="{{ $item->title }}" />
|
|
</div>
|
|
</div>
|
|
@endforeach
|