App\Models\Multiplayer\Match::events PHP Method

events() public method

public events ( )
    public function events()
    {
        return $this->hasMany(Event::class);
    }

Usage Example

Esempio n. 1
0
 public function includeEvents(Match $match)
 {
     return $this->collection($match->events()->default()->get(), new EventTransformer());
 }