Exemplo n.º 1
0
 public function getEvents()
 {
     $categoryId = (int) $this->property('category');
     $events = Event::all()->where('category_id', $categoryId);
     return $events;
 }