Esempio n. 1
0
 public function team($id)
 {
     return $this->team->find($id) ?: $this->abort(404, 'team not found');
 }
Esempio n. 2
0
 public function get($id)
 {
     return $this->team->find($id) ?: $this->abort(404);
 }