mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
20 lines
355 B
PHP
20 lines
355 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class Team extends NexusModel
|
|
{
|
|
protected $fillable = ['name', 'sort_index', 'mode',];
|
|
|
|
public static function getLabelName()
|
|
{
|
|
return nexus_trans('searchbox.sub_category_team_label');
|
|
}
|
|
|
|
public function search_box()
|
|
{
|
|
return $this->belongsTo(SearchBox::class, 'mode', 'id');
|
|
}
|
|
}
|