kusowl 9e61dd9f51 feature(deal-modal): add interaction only in card
- show current user liked and favorite status in the modal
2026-01-22 13:34:02 +05:30

21 lines
542 B
PHP

@props(['isFavourite' => false, 'isInteractive'=> true])
@php
$actionAttributes = $isInteractive ? [
'data-favorite' => $isFavourite ? 'true' : 'false',
'onclick' => "favorite(this)"
] : [] ;
$buttonClasses = [
'text-accent-600 favoriteBtn',
];
@endphp
<x-ui.button-sm
{{$attributes->merge($actionAttributes)->class($buttonClasses)}}
>
<x-heroicon-o-star
@class([
"favorite w-4",
'fill-current text-yellow-500' => $isFavourite
])
/>
</x-ui.button-sm>