/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     $comments = Comments::get()->all();
     $reading = Currently_Reading::findOrFail($id);
     return view('pages.show', compact('reading', 'comments'));
 }