示例#1
0
 /**
  * Display the specified theme.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id, $title = NULL)
 {
     $theme = Theme::findOrFail($id);
     $theme_images = $theme->themeImage;
     $powerful = Powerful::getList($theme->powerful_id);
     return View::make('exp.theme', compact('theme', 'theme_images', 'powerful'));
 }