The interaction for User like, dislike, and love features for Laravel Application. Easy to use and highly customizable.
Support for various interaction types, or create your own custom interactions.
Let users express positive feedback with a simple like interaction.
Allow users to express negative feedback when needed.
Let users show extra appreciation with a love reaction.
Everything you need to implement user interactions in your Laravel application.
Easily integrate this package into your Laravel application with minimal setup required.
Customize the package to suit your needs. Configure different interaction types and events.
Support for likes, dislikes, loves, and more. Or create your own custom interactions.
Get up and running in your Laravel project in minutes.
$ composer require cslant/laravel-like
// Add to your User model use CSlant\Like\Traits\Likeable; class User extends Model { use Likeable; }
// Like a post $post->like($user); // Dislike a post $post->dislike($user); // Love a post $post->love($user); // Check if liked $post->isLikedBy($user);
Install via Composer and start adding like, dislike, and love features to your Laravel application.