2021-05-15 19:29:44 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Codec extends NexusModel
|
|
|
|
|
{
|
|
|
|
|
protected $table = 'codecs';
|
2021-06-21 19:56:25 +08:00
|
|
|
|
|
|
|
|
public static function getLabelName()
|
|
|
|
|
{
|
|
|
|
|
return nexus_trans('searchbox.sub_category_codec_label');
|
|
|
|
|
}
|
2021-05-15 19:29:44 +08:00
|
|
|
}
|