1. Go to this page and download the library: Download questocat/laravel-rally library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
questocat / laravel-rally example snippets
\Questocat\Rally\RallyServiceProvider::class,
use Questocat\Rally\Traits\CanFollow
class User extends Model
{
use CanFollow;
}
use Questocat\Rally\Traits\CanBeFollowed
class Post extends Model
{
use CanBeFollowed;
}
use Questocat\Rally\Traits\Followable
class User extends Model
{
use Followable;
}