Exemplo n.º 1
0
 public function getNextEvent()
 {
     $categoryId = (int) $this->property('category');
     $event = Event::where('category_id', $categoryId)->orderBy('startDate', 'asc')->first();
     return $event;
 }