1 <?php namespace BookStack;
3 class EmailConfirmation extends Model
5 protected $fillable = ['user_id', 'token'];
8 * Get the user that this confirmation is attached to.
9 * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
11 public function user()
13 return $this->belongsTo(User::class);