SIGN IN SIGN UP
BookStackApp / BookStack UNCLAIMED

A platform to create documentation/wiki content built with PHP & Laravel

0 0 2 PHP
2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Settings;
2023-05-17 17:56:55 +01:00
use BookStack\App\Model;
class Setting extends Model
{
protected $fillable = ['setting_key', 'value'];
protected $primaryKey = 'setting_key';
}