1 | <?php |
||
7 | class Team extends Model |
||
8 | { |
||
9 | protected $table = 'team'; |
||
10 | public $timestamps = true; |
||
11 | protected $fillable = ['short_id', 'name', 'championship_id']; |
||
12 | |||
13 | /** |
||
14 | * A Team belongs to a Championship. |
||
15 | * |
||
16 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
17 | */ |
||
18 | public function championship() |
||
22 | |||
23 | /** |
||
24 | * @return \Illuminate\Database\Eloquent\Relations\HasManyThrough |
||
25 | */ |
||
26 | public function category() |
||
30 | |||
31 | public function fightersGroups() |
||
35 | |||
36 | public function competitors() |
||
40 | |||
41 | public function competitorsWithUser() |
||
45 | |||
46 | public function getName() |
||
51 | |||
52 | } |
||
53 |