2018-05-26 22:58:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2018-06-14 00:52:42 +00:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2018-05-26 22:58:22 +00:00
|
|
|
|
|
|
|
class Notification extends Model
|
|
|
|
{
|
2018-06-14 00:52:42 +00:00
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be mutated to dates.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dates = ['deleted_at'];
|
2018-08-28 03:07:36 +00:00
|
|
|
|
2018-06-14 00:52:42 +00:00
|
|
|
public function actor()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Profile::class, 'actor_id', 'id');
|
2018-06-14 00:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function profile()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Profile::class, 'profile_id', 'id');
|
2018-06-14 00:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function item()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->morphTo();
|
2018-06-14 00:52:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function status()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Status::class, 'item_id', 'id');
|
2018-06-14 00:52:42 +00:00
|
|
|
}
|
2018-05-26 22:58:22 +00:00
|
|
|
}
|