add tooltip to sidebar buttons remove profile for admin fix mobile menu not opening in home page fix deal image input modal size in mobile view make image scrollable in input modal fix explore page filters are not clickable when recent search is maxed out change UI for the recent searches add seeder for categories improve deal card ui in broker dashboard
12 lines
437 B
PHP
12 lines
437 B
PHP
@props(['image' => '', 'alt' => ''])
|
|
<div {{$attributes->merge(['class' => "border border-gray-200 rounded-xl overflow-clip flex flex-col h-full"])}}>
|
|
<div class="flex flex-col h-full">
|
|
<div class="rounded-t-xl h-70 bg-gray-100 flex justify-center items-center">
|
|
<img src="{{$image}}" alt="" class="object-cover">
|
|
</div>
|
|
<div class="flex-1">
|
|
{{$slot}}
|
|
</div>
|
|
</div>
|
|
</div>
|