/**
  * Display a listing of powerful
  *
  * @return Response
  */
 public function index()
 {
     $powerful = Powerful::orderBy('id', 'desc')->paginate(10);
     return View::make('powerful.index', compact('powerful'));
 }