Setting.php 156 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 <?php namespace BookStack; class Setting extends Model { protected $fillable = ['setting_key', 'value']; protected $primaryKey = 'setting_key'; }