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

17 lines
270 B
PHP

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