Files
nexusphp/app/Models/Processing.php
2022-10-30 17:30:24 +08:00

22 lines
406 B
PHP

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