| 1 | <?php |
||
| 7 | class Team extends Model |
||
| 8 | { |
||
| 9 | |||
| 10 | protected $table = 'team'; |
||
| 11 | public $timestamps = true; |
||
| 12 | protected $fillable = ['name', 'championship_id']; |
||
| 13 | |||
| 14 | |||
| 15 | /** |
||
| 16 | * A Team belongs to a Championship |
||
| 17 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 18 | */ |
||
| 19 | public function championship() |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return \Illuminate\Database\Eloquent\Relations\HasManyThrough |
||
| 26 | */ |
||
| 27 | public function category() |
||
| 31 | |||
| 32 | public function rounds() |
||
| 36 | |||
| 37 | } |