laravel-favorite icon indicating copy to clipboard operation
laravel-favorite copied to clipboard

How to check in view file if the user has liked the post?

Open webfuelcode opened this issue 3 years ago • 1 comments

I am trying to show the different colors for liked and non-liked users on the view file.

I am using laravel 7, how to use $post->isFavorited() on laravel view file, with if-else statement...

webfuelcode avatar Mar 14 '21 05:03 webfuelcode

You can do it like this

<span class="{{ $post->isFavorited() ? 'bg-yellow-500' : 'bg-gray-500'  }}">⭐</span>

but it gives me eager loading issue https://github.com/ChristianKuri/laravel-favorite/issues/32

Ahmad-Fathy avatar Jul 21 '22 09:07 Ahmad-Fathy