21 lines
726 B
PHP
21 lines
726 B
PHP
<div class="like-button">
|
|
@if(session('error'))
|
|
<div class="alert alert-danger">{{ session('error') }}</div>
|
|
@endif
|
|
|
|
<button
|
|
wire:click="toggleLike"
|
|
class="flex items-center space-x-1
|
|
{{ $isLiked ? 'text-red-500' : 'text-gray-500' }}"
|
|
>
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
class="h-5 w-5"
|
|
viewBox="0 0 20 20"
|
|
fill="currentColor">
|
|
<path fill-rule="evenodd"
|
|
d="M3.172 5.172a4 4 0 015.656 0L10 6.343l1.172-1.171a4 4 0 115.656 5.656L10 17.657l-6.828-6.829a4 4 0 010-5.656z"
|
|
clip-rule="evenodd" />
|
|
</svg>
|
|
<span>{{ $likesCount }}</span>
|
|
</button>
|
|
</div> |