pixelfed/app/ReportLog.php

14 lines
174 B
PHP

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