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