29 lines
955 B
PHP
29 lines
955 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>
|
|
|
|
<x-link href="{{ $item->action }}" class="font-light text-sm" override="class" target="_blank">
|
|
<x-link.hover>
|
|
{{ $item->learn_more }}
|
|
</x-link.hover>
|
|
</x-link>
|
|
</div>
|
|
|
|
<div class="absolute ltr:right-0 rtl:left-0 -top-4">
|
|
<img src="{{ $item->thumb }}" alt="{{ $item->title }}" />
|
|
</div>
|
|
</div>
|
|
@endforeach
|