Files
animethemes-server/app/Models/User/Like.php
T

89 lines
1.9 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Models\User;
use App\Models\Auth\User;
use App\Models\BaseModel;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\MorphTo;
/**
* @property User $user
* @property int $user_id
* @property Model $likeable
* @property string $likeable_type
* @property int $likeable_id
*/
class Like extends BaseModel
{
final public const TABLE = 'likes';
final public const ATTRIBUTE_ID = 'like_id';
final public const ATTRIBUTE_USER = 'user_id';
final public const ATTRIBUTE_LIKEABLE = 'likeable';
final public const ATTRIBUTE_LIKEABLE_TYPE = 'likeable_type';
final public const ATTRIBUTE_LIKEABLE_ID = 'likeable_id';
final public const RELATION_USER = 'user';
final public const RELATION_LIKEABLE = 'likeable';
/**
* Is auditing disabled?
*
* @var bool
*/
public static $auditingDisabled = true;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = Like::TABLE;
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = Like::ATTRIBUTE_ID;
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
Like::ATTRIBUTE_USER,
Like::ATTRIBUTE_LIKEABLE_TYPE,
Like::ATTRIBUTE_LIKEABLE_ID,
];
public function getName(): string
{
return strval($this->getKey());
}
public function getSubtitle(): string
{
return '';
}
/**
* @return BelongsTo<User, $this>
*/
public function user(): BelongsTo
{
return $this->belongsTo(User::class, Like::ATTRIBUTE_USER);
}
public function likeable(): MorphTo
{
return $this->morphTo();
}
}