akaunting/resources/views/components/show/no-records.blade.php
2022-06-23 14:21:07 +03:00

30 lines
767 B
PHP

<div @class([
'relative lg:h-60',
$backgroundColor,
'rounded-lg flex flex-col lg:flex-row items-center justify-between mt-8 mb-12',
])
>
<div class="hidden lg:block px-4">
<img src="{{ $image }}" class="w-60 h-60 object-contain mt-10 m-auto" />
</div>
<div @class([
'lg:w-3/5',
$textColor,
'text-right py-4 lg:py-0 px-4 space-y-2',
])
>
<p class="mb-5">
{!! $description !!}
</p>
@if (! empty($button) && $button->isNotEmpty())
{!! $button !!}
@else
<a href="{!! $url !!}">
<x-text.hover text="{{ $textAction }}" color="to-white" />
</a>
@endif
</div>
</div>