SocialAccount.php 235 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php namespace BookStack; class SocialAccount extends Model { protected $fillable = ['user_id', 'driver', 'driver_id', 'timestamps']; public function user() { return $this->belongsTo('BookStack\User'); } }