mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-09 01:30:52 +08:00
15 lines
235 B
PHP
15 lines
235 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class Processing extends NexusModel
|
|
{
|
|
protected $table = 'processings';
|
|
|
|
public static function getLabelName()
|
|
{
|
|
return nexus_trans('searchbox.sub_category_processing_label');
|
|
}
|
|
}
|