]>
BookStack Code Mirror - bookstack/blob - app/Setting.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added initial settings interface, Fixes #9.
[bookstack]
/
app
/
Setting.php
1
<?php
2
3
namespace Oxbow;
4
5
use Illuminate\Database\Eloquent\Model;
6
7
class Setting extends Model
8
{
9
protected $fillable = ['setting_key', 'value'];
10
11
protected $primaryKey = 'setting_key';
12
}