| 1 | <?php |
||
| 9 | class Setting extends Model |
||
| 10 | { |
||
| 11 | |||
| 12 | use SoftDeletes; |
||
| 13 | protected $table = 'settings'; |
||
| 14 | protected $dates = ['created_at', 'updated_at', 'deleted_at']; |
||
| 15 | protected $hidden = ['deleted_at']; |
||
| 16 | protected $guarded = ['id', 'key']; |
||
| 17 | protected $fillable = ['name', 'value']; |
||
| 18 | |||
| 19 | public function newCollection(array $models = []) |
||
| 23 | |||
| 24 | public static function boot() |
||
| 29 | } |
||
| 30 |