Files
animethemes-server/app/Models/Aggregate/LikeAggregate.php
T
2025-10-01 17:18:31 -03:00

52 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Models\Aggregate;
use App\Contracts\Models\Likeable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphTo;
/**
* @property Likeable $likeable
* @property string $likeable_type
* @property int $likeable_id
* @property int $value
*/
class LikeAggregate extends Model
{
final public const string TABLE = 'like_aggregates';
final public const string ATTRIBUTE_LIKEABLE = 'likeable';
final public const string ATTRIBUTE_LIKEABLE_TYPE = 'likeable_type';
final public const string ATTRIBUTE_LIKEABLE_ID = 'likeable_id';
final public const string ATTRIBUTE_VALUE = 'value';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = LikeAggregate::TABLE;
/**
* Indicates if the IDs are auto-incrementing.
*
* @var bool
*/
public $incrementing = false;
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
public function likeable(): MorphTo
{
return $this->morphTo();
}
}