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/Like.php

33 lines
587 B
PHTML

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
8 years ago
use Illuminate\Database\Eloquent\SoftDeletes;
class Like extends Model
{
8 years ago
use SoftDeletes;
const MAX_PER_DAY = 1500;
4 years ago
protected $fillable = ['profile_id', 'status_id', 'status_profile_id'];
8 years ago
5 months ago
protected function casts(): array
{
return [
'deleted_at' => 'datetime',
];
}
public function actor()
{
return $this->belongsTo(Profile::class, 'profile_id', 'id');
}
public function status()
{
return $this->belongsTo(Status::class);
}
}