public function show($id) { $text = Text::whereId($id)->first(); if (count($text) > 0) { $comments = $this->getComments($id); return view('text')->with('comments', $comments)->with('text', $text); } else { return Redirect::to('/'); } }