]> BookStack Code Mirror - bookstack/blob - app/Settings/Setting.php
New translations validation.php (German Informal)
[bookstack] / app / Settings / Setting.php
1 <?php namespace BookStack\Settings;
2
3 use BookStack\Model;
4
5 class Setting extends Model
6 {
7     protected $fillable = ['setting_key', 'value'];
8
9     protected $primaryKey = 'setting_key';
10 }