dealhub/resources/views/components/ui/image-card.blade.php
kusowl cdcb75cb58 fix: listing card ui
- fixed the issue on when a card's title gets in two line, it adds space on other cards
2026-01-13 15:46:11 +05:30

12 lines
361 B
PHP

@props(['image' => '', 'alt' => ''])
<div 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-40">
<img src="{{$image}}" alt="" class="object-cover">
</div>
<div class="flex-1">
{{$slot}}
</div>
</div>
</div>