pixelfed/app/Notification.php

31 lines
462 B
PHP
Raw Normal View History

2018-05-26 22:58:22 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Notification extends Model
{
2018-05-27 03:25:04 +00:00
public function actor()
{
return $this->belongsTo(Profile::class, 'actor_id', 'id');
}
public function profile()
{
return $this->belongsTo(Profile::class, 'profile_id', 'id');
}
2018-06-04 08:16:33 +00:00
public function item()
{
return $this->morphTo();
}
public function status()
{
return $this->belongsTo(Status::class, 'item_id', 'id');
}
2018-05-26 22:58:22 +00:00
}