could anyone help me. I'm making a follow system. My code is working but I want the integer value going into the follower column in users. Is a pivot
appropriate to use or is there something else I could use? Here's my code:
user model
public function followers()
{
return $this->belongsToMany(User::class, 'followers', 'leader_id', 'follower_id');
}
public function followings()
{
return $this->belongsToMany(User::class, 'followers', 'follower_id', 'leader_id');
}
follower model protected $fillable=[
"follower_id",
"leader_id",
];
Controller public function followCount( int $id)
{
$user = User::find($id);
$user->followers()->attach(auth()->user()->id);
return redirect()->back()->with('success', 'Successfully followed the user.');
}
```
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire