mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
613 B
PHP
31 lines
613 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class FollowRequest extends Model
|
|
{
|
|
protected $fillable = ['follower_id', 'following_id'];
|
|
|
|
public function follower()
|
|
{
|
|
return $this->belongsTo(Profile::class, 'follower_id', 'id');
|
|
}
|
|
|
|
public function following()
|
|
{
|
|
return $this->belongsTo(Profile::class, 'following_id', 'id');
|
|
}
|
|
|
|
public function actor()
|
|
{
|
|
return $this->belongsTo(Profile::class, 'follower_id', 'id');
|
|
}
|
|
|
|
public function target()
|
|
{
|
|
return $this->belongsTo(Profile::class, 'following_id', 'id');
|
|
}
|
|
}
|