| 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 | public function competitors() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Get Team Name |
||
| 21 | * @return mixed|string |
||
| 22 | */ |
||
| 23 | public function getNameAttribute() |
||
| 31 | } |
||
| 32 |