├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── README.md ├── composer.json ├── config └── favorite.php ├── migrations └── 2018_12_14_000000_create_favorites_table.php └── src ├── Events ├── Event.php ├── Favorited.php └── Unfavorited.php ├── Favorite.php ├── FavoriteServiceProvider.php └── Traits ├── Favoriteable.php └── Favoriter.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [overtrue] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/composer.json -------------------------------------------------------------------------------- /config/favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/config/favorite.php -------------------------------------------------------------------------------- /migrations/2018_12_14_000000_create_favorites_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/migrations/2018_12_14_000000_create_favorites_table.php -------------------------------------------------------------------------------- /src/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/src/Events/Event.php -------------------------------------------------------------------------------- /src/Events/Favorited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/src/Events/Favorited.php -------------------------------------------------------------------------------- /src/Events/Unfavorited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/src/Events/Unfavorited.php -------------------------------------------------------------------------------- /src/Favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/src/Favorite.php -------------------------------------------------------------------------------- /src/FavoriteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/src/FavoriteServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/Favoriteable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/src/Traits/Favoriteable.php -------------------------------------------------------------------------------- /src/Traits/Favoriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-favorite/HEAD/src/Traits/Favoriter.php --------------------------------------------------------------------------------