pixelfed/app/ReportComment.php
Daniel Supernault 7e333059fb
Update models
2023-01-21 07:48:27 -07:00

16 lines
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);
}
}