1 <?php namespace BookStack;
7 * Relation for the user that created this entity.
8 * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
10 public function createdBy()
12 return $this->belongsTo('BookStack\User', 'created_by');
16 * Relation for the user that updated this entity.
17 * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
19 public function updatedBy()
21 return $this->belongsTo('BookStack\User', 'updated_by');