1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-26 09:46:49 +00:00
pixelfed/app/Notification.php
2018-05-26 21:25:04 -06:00

20 lines
302 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Notification extends Model
{
public function actor()
{
return $this->belongsTo(Profile::class, 'actor_id', 'id');
}
public function profile()
{
return $this->belongsTo(Profile::class, 'profile_id', 'id');
}
}