mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-16 14:00:56 +08:00
16 lines
392 B
PHP
16 lines
392 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Searchbox extends NexusModel
|
|
{
|
|
protected $table = 'searchbox';
|
|
|
|
protected $fillable = [
|
|
'name', 'catsperrow', 'catpadding', 'showsubcat',
|
|
'showsource', 'showmedium', 'showcodec', 'showstandard', 'showprocessing', 'showteam', 'showaudiocodec',
|
|
'custom_fields', 'custom_fields_display_name', 'custom_fields_display'
|
|
];
|
|
|
|
}
|