pixelfed/app/ReportComment.php

16 wiersze
208 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ReportComment extends Model
{
protected $guarded = [];
public function profile()
{
return $this->belongsTo(Profile::class);
}
}