blob: 2582f334efe32bb45b32a579d98c3a827e13dd04 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 | <?php
namespace App\Rugby\Model;
use Illuminate\Database\Eloquent\Model;
use App\Rugby\Model\Match;
class Team extends Model
{
    protected $table = 'teams';
    protected $fillable = ['name'];
    public function matches()
    {
        return $this->belongsToMany(Match::class)->withPivot('is_home');
    }
    public function homeMatches()
    {
        return $this->matches()->wherePivot('is_home', '=', true);
    }
    public function awayMatches()
    {
        return $this->matches()->wherePivot('is_home', '=', false);
    }
    public function getName()
    {
        return $this->name ?: '';
    }
}
 |