]> BookStack Code Mirror - bookstack/blob - app/EmailConfirmation.php
Found the source of the issue, not sure how to fix
[bookstack] / app / EmailConfirmation.php
1 <?php
2
3 namespace BookStack;
4
5 use Illuminate\Database\Eloquent\Model;
6
7 class EmailConfirmation extends Model
8 {
9     protected $fillable = ['user_id', 'token'];
10
11     public function user()
12     {
13         return $this->belongsTo('BookStack\User');
14     }
15 }