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

17 lines
286 B
PHP

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