summaryrefslogtreecommitdiff
path: root/app/Rugby/Model/Team.php
blob: 2dbfea61d6486c2515129ba147f986d84d40703d (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php

namespace App\Rugby\Model;

use App\Rugby\Concerns\Matchable;
use Illuminate\Database\Eloquent\Model;

use App\Rugby\Model\Match;

class Team extends Model
{
    use Matchable;

    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 ?: '';
    }

    public function matchableFilters()
    {
        $name_parts = collect(explode(' ', $this->name));

        $out = $name_parts->map(
            function ($value) {
                return ['string', $value];
            }
        );

        return $out;
    }
}