| 1 | <?php |
||
| 5 | class Team extends Fighter |
||
| 6 | { |
||
| 7 | protected $table = 'team'; |
||
| 8 | public $timestamps = true; |
||
| 9 | protected $fillable = ['short_id', 'name', 'championship_id']; |
||
| 10 | |||
| 11 | |||
| 12 | |||
| 13 | /** |
||
| 14 | * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany |
||
| 15 | */ |
||
| 16 | public function fightersGroups() |
||
| 20 | |||
| 21 | public function competitors() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get Team Name |
||
| 28 | * @return mixed|string |
||
| 29 | */ |
||
| 30 | public function getNameAttribute() |
||
| 38 | } |
||
| 39 |