summaryrefslogtreecommitdiff
path: root/app/Rugby/Model/Tournament.php
blob: 64d9a453fd05fed8b513c9c12321ef0c92f46f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

namespace App\Rugby\Model;

use App\Rugby\Model\Match;

use Illuminate\Database\Eloquent\Model;

class Tournament extends Model
{
    protected $table = 'tournaments';

    protected $fillable = ['name'];

    public function matches()
    {
        return $this->belongsToMany(Match::class);
    }
}