mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-12 03:10:52 +08:00
15 lines
219 B
PHP
15 lines
219 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class Media extends NexusModel
|
|
{
|
|
protected $table = 'media';
|
|
|
|
public static function getLabelName()
|
|
{
|
|
return nexus_trans('searchbox.sub_category_media_label');
|
|
}
|
|
}
|