/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function admin()
 {
     $portfolio_posts = PortfolioPost::all();
     return View::make('modules.portfolio.posts.admin', compact('portfolio_posts'));
 }