mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
17 lines
270 B
PHP
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');
|
|
}
|
|
}
|