belongsTo(User::class, 'created_by'); } /** * Get the image that this is a revision of. * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function image() { return $this->belongsTo(Image::class); } }