Ejemplo n.º 1
0
 protected function getAll()
 {
     $users = handleUrlParams('User', $this->request)->get();
     return data(compact('users'));
 }
Ejemplo n.º 2
0
 protected function getByFounder()
 {
     $events = handleUrlParams('Event', $this->request)->where('user_id', $this->request->founder_id)->get();
     return data(compact('events'));
 }