https://github.com/skybluesofa/laravel-followers

Laravel 5 Followers

Gives Eloquent models the ability to manage their followers.

Models can:

Installation

First, install the package through Composer.

composer require skybluesofa/laravel-followers

Then include the service provider inside config/app.php.

'providers' => [
 ...
 Skybluesofa\\Followers\\ServiceProvider::class,
 ...
];