1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-23 16:24:29 +00:00
pixelfed/app/Like.php
2018-04-16 19:35:01 -06:00

18 lines
268 B
PHP

<?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);
}
}