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

20 lines
363 B
PHP

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