Setting.php 198 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 <?php namespace BookStack; use Illuminate\Database\Eloquent\Model; class Setting extends Model { protected $fillable = ['setting_key', 'value']; protected $primaryKey = 'setting_key'; }