2018-06-09 03:05:13 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2018-06-14 00:52:42 +00:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2018-06-09 03:05:13 +00:00
|
|
|
|
|
|
|
class Mention extends Model
|
|
|
|
{
|
2018-06-14 00:52:42 +00:00
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that should be mutated to dates.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2023-04-20 04:30:37 +00:00
|
|
|
protected $casts = [
|
|
|
|
'deleted_at' => 'datetime'
|
|
|
|
];
|
2018-06-09 03:05:13 +00:00
|
|
|
|
2023-01-21 14:48:27 +00:00
|
|
|
protected $guarded = [];
|
|
|
|
|
2018-06-09 03:05:13 +00:00
|
|
|
public function profile()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Profile::class, 'profile_id', 'id');
|
2018-06-09 03:05:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function status()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
return $this->belongsTo(Status::class, 'status_id', 'id');
|
2018-06-09 03:05:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function toText()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
$actorName = $this->status->profile->username;
|
|
|
|
|
|
|
|
return "{$actorName} ".__('notification.mentionedYou');
|
2018-06-09 03:05:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function toHtml()
|
|
|
|
{
|
2018-08-28 03:07:36 +00:00
|
|
|
$actorName = $this->status->profile->username;
|
|
|
|
$actorUrl = $this->status->profile->url();
|
|
|
|
|
|
|
|
return "<a href='{$actorUrl}' class='profile-link'>{$actorName}</a> ".
|
2018-06-09 03:05:13 +00:00
|
|
|
__('notification.mentionedYou');
|
|
|
|
}
|
|
|
|
}
|