/**
  * Remove the specified resource from storage.
  *
  * @param  StoreCategory $category
  * @return Response
  */
 public function destroy($category)
 {
     $category->delete();
     return redirect()->route('webpanel.store.categories.index');
 }