Exemplo n.º 1
0
 public function user($userID)
 {
     return $this->user->find($userID) ?: $this->abort(404, 'user not found');
 }
Exemplo n.º 2
0
 public function item($id)
 {
     return User::find($id);
 }
Exemplo n.º 3
0
 public function get($id)
 {
     return $this->user->find($id) ?: $this->abort(404);
 }