Download the PHP package overtrue/laravel-follow without Composer
On this page you can find all versions of the php package overtrue/laravel-follow. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download overtrue/laravel-follow
More information about overtrue/laravel-follow
Files in overtrue/laravel-follow
Package laravel-follow
Short Description User follow unfollow system for Laravel.
License MIT
Informations about the package laravel-follow
Laravel Follow
User follow unfollow system for Laravel.
Related projects:
- Like: overtrue/laravel-like
- Favorite: overtrue/laravel-favorite
- Subscribe: overtrue/laravel-subscribe
- Vote: overtrue/laravel-vote
Installing
Configuration and Migrations
Usage
Traits
Overtrue\LaravelFollow\Traits\Follower
Add the Follower trait to your user model:
Overtrue\LaravelFollow\Traits\Followable
Then add the Followable trait to your followable model, for example App\User
:
or any other model:
API
Get followings:
Get followers:
Follow Requests
If you would like to have some follow requests to need to be accepted by the user being followed, simply override the needsToApproveFollowRequests() method in the model that uses the Followable trait with your custom logic:
Aggregations
List with *_count
attribute:
Attach user follow status to followable collection
You can use Follower::attachFollowStatus(Collection $followables)
to attach the user follow status, it will set has_followed
attribute to each model of $followables
:
For model
For Collection | Paginator | LengthAwarePaginator | array
:
For pagination
Order by followers count
You can query users order by followers count with following methods:
orderByFollowersCountDesc()
orderByFollowersCountAsc()
orderByFollowersCount(string $direction = 'desc')
example:
N+1 issue
To avoid the N+1 issue, you can use eager loading to reduce this operation to just 2 queries. When querying, you may specify which relationships should be eager loaded using the with
method:
Events
Event | Description |
---|---|
Overtrue\LaravelFollow\Events\Followed |
Triggered when the relationship is created. |
Overtrue\LaravelFollow\Events\Unfollowed |
Triggered when the relationship is deleted. |
:heart: Sponsor me
如果你喜欢我的项目并想支持它,点击这里 :heart:
Project supported by JetBrains
Many thanks to Jetbrains for kindly providing a license for me to work on this and other open-source projects.
Contributing
You can contribute in one of three ways:
- File bug reports using the issue tracker.
- Answer questions or fix bugs on the issue tracker.
- Contribute new features or update the wiki.
The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.
PHP 扩展包开发
想知道如何从零开始构建 PHP 扩展包?
请关注我的实战课程,我会在此课程中分享一些扩展开发经验 —— 《PHP 扩展包实战教程 - 从入门到发布》
License
MIT