Files
nexusphp/app/Models/Codec.php
2022-09-07 17:10:52 +08:00

17 lines
271 B
PHP

<?php
namespace App\Models;
class Codec extends NexusModel
{
protected $table = 'codecs';
protected $fillable = ['name', 'sort_index'];
public static function getLabelName()
{
return nexus_trans('searchbox.sub_category_codec_label');
}
}