Getting started
Integrate user interactions to your Laravel application like: followers, subscribers, likes, participants, etc
composer require open-southeners/laravel-user-interactionsphp artisan vendor:publish --provider="OpenSoutheners\\LaravelUserInteractions\\ServiceProvider"<?php
namespace App\Models;
use Illuminate\Foundation\Auth\User as Authenticatable;
use OpenSoutheners\LaravelUserInteractions\Concerns\InteractsWith;
use OpenSoutheners\LaravelUserInteractions\Contracts\Interactable;
class User extends Authenticatable implements Interactable
{
use InteractsWith;
// The rest of your code here...
}Last updated