1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-23 00:05:29 +00:00
pixelfed/app/FollowRequest.php
2018-09-01 22:28:01 -06:00

18 lines
331 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class FollowRequest extends Model
{
public function follower()
{
return $this->belongsTo(Profile::class, 'follower_id', 'id');
}
public function following()
{
return $this->belongsTo(Profile::class, 'following_id', 'id');
}
}