You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/app/Models/Like.php

34 lines
623 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class Like extends Model
{
use SoftDeletes;
const MAX_PER_DAY = 1500;
protected $guarded = [];
protected function casts(): array
{
return [
'deleted_at' => 'datetime',
];
}
public function actor(): BelongsTo
{
return $this->belongsTo(Profile::class, 'profile_id', 'id');
}
public function status(): BelongsTo
{
return $this->belongsTo(Status::class);
}
}