1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-22 15:55:14 +00:00
pixelfed/app/Like.php

19 lines
268 B
PHP
Raw Normal View History

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Like extends Model
{
public function actor()
{
return $this->belongsTo(Profile::class);
}
public function status()
{
return $this->belongsTo(Status::class);
}
}