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

35 lines
629 B
PHTML

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
7 years ago
use Illuminate\Database\Eloquent\SoftDeletes;
class Like extends Model
{
7 years ago
use SoftDeletes;
const MAX_PER_DAY = 1500;
7 years ago
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $casts = [
'deleted_at' => 'datetime'
];
2 years ago
protected $fillable = ['profile_id', 'status_id', 'status_profile_id'];
7 years ago
public function actor()
{
return $this->belongsTo(Profile::class, 'profile_id', 'id');
}
public function status()
{
return $this->belongsTo(Status::class);
}
}