├── LICENSE ├── README.md ├── composer.json ├── migrations └── 2019_04_18_212528_create_likeable_table.php └── src ├── Like.php ├── LikeCounter.php ├── Likeable.php └── LikeableServiceProvider.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Likeable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Likeable/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Likeable/HEAD/composer.json -------------------------------------------------------------------------------- /migrations/2019_04_18_212528_create_likeable_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Likeable/HEAD/migrations/2019_04_18_212528_create_likeable_table.php -------------------------------------------------------------------------------- /src/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Likeable/HEAD/src/Like.php -------------------------------------------------------------------------------- /src/LikeCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Likeable/HEAD/src/LikeCounter.php -------------------------------------------------------------------------------- /src/Likeable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Likeable/HEAD/src/Likeable.php -------------------------------------------------------------------------------- /src/LikeableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliBayat/Laravel-Likeable/HEAD/src/LikeableServiceProvider.php --------------------------------------------------------------------------------