nuummite/laravel-followable

Helper traits to start your microblogging laravel application.

0.0.1 2016-04-27 17:56 UTC

This package is not auto-updated.

Last update: 2024-05-25 17:25:25 UTC


README

Introduction

Laravel Followable provides a set of Traits and classes to kick start your microblogging site or your add social collaboration to your current project.

License

Laravel Followable is open-sourced software licensed under the MIT license

Official Documentation

To get started with Laravel Followable, add to your composer.json file as a dependency:

composer require nuummite/laravel-followable

Configuration

After installing the Socialite library, register the Nuummite\Followable\Providers\FollowableServiceProvider in your config/app.php configuration file:

'providers' => [
    // Other service providers...

    Nuummite\Followable\Providers\FollowableServiceProvider::class,
],

Run the vendor publish artisan command to expose the needed migrations:

php artisan vendor:publish

Run the migrations using artisan command. This will create the needed tables in your database. These are: followables and feed_messages

php artisan migrate

Basic Usage

As a final step, you can use the traits FollowableTrait and FollowerTrait of this package in your User class in order to start coding your microblogging app.

It's as easy as thinking that a User can "follow" and can be "followed". So we add the needed functionallity to the User class.

You can also add these traits to any object. So if you'd like, for example, make a "Task" followable you can do it also! This is usefull when you want to add social collaboration to your application.