/**
  * Remove the specified powerful from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     Powerful::destroy($id);
     return Redirect::route('admin.powerful.index')->withErrors('Item had deleted!');
 }