Ejemplo n.º 1
0
 /**
  * Display a single User.
  *
  * @param int $id
  *
  * @return Response
  */
 public function show($id)
 {
     return view('user.show', ['theUser' => User::where('id', '=', $id)->with(['client'])->firstOrFail()]);
 }