コード例 #1
0
 /**
  * Logged in User history page
  * GET /history
  * @return Response
  */
 public function history()
 {
     $links = $this->linkRepository->getAllUserLinks(Auth::user());
     return View::make('user.history', compact('links'));
 }