1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-21 23:32:39 +00:00
pixelfed/app/Comment.php
2018-08-28 03:07:36 +00:00

18 lines
277 B
PHP

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