20 lines
207 B
PHP
20 lines
207 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Setting extends Model
|
|
{
|
|
|
|
protected $fillable = [
|
|
'key',
|
|
'value',
|
|
'group',
|
|
'description',
|
|
];
|
|
|
|
|
|
|
|
}
|