Files
nexusphp/app/Models/Media.php

17 lines
270 B
PHP
Raw Normal View History

2021-05-15 19:29:44 +08:00
<?php
namespace App\Models;
class Media extends NexusModel
{
protected $table = 'media';
2021-06-21 19:56:25 +08:00
2022-09-07 17:10:52 +08:00
protected $fillable = ['name', 'sort_index'];
2021-06-21 19:56:25 +08:00
public static function getLabelName()
{
return nexus_trans('searchbox.sub_category_media_label');
}
2021-05-15 19:29:44 +08:00
}