From 828fea161253eeb5790aebf639ffa7bd4aec8fd5 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 3 Feb 2019 14:49:11 -0700 Subject: [PATCH] Update ReportComment model --- app/ReportComment.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/ReportComment.php b/app/ReportComment.php index 5d364e1e9..1e57c49ce 100644 --- a/app/ReportComment.php +++ b/app/ReportComment.php @@ -6,5 +6,8 @@ use Illuminate\Database\Eloquent\Model; class ReportComment extends Model { - // + public function profile() + { + return $this->belongsTo(Profile::class); + } }