Files
nexusphp/app/Models/Processing.php
2022-10-27 20:21:54 +08:00

22 lines
397 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');
}
public function search_box()
{
return $this->belongsTo(SearchBox::class, 'mode', 'id');
}
}