mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 23:40:59 +08:00
15 lines
220 B
PHP
15 lines
220 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class Codec extends NexusModel
|
|
{
|
|
protected $table = 'codecs';
|
|
|
|
public static function getLabelName()
|
|
{
|
|
return nexus_trans('searchbox.sub_category_codec_label');
|
|
}
|
|
}
|