/**
  * Remove the specified resource from storage.
  *
  * @param  int $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     try {
         $category = VideoCategory::findOrFail($id);
         $category->delete();
     } catch (ModelNotFoundException $ex) {
         Flash::error('No video category found' . $ex);
         return redirect()->route('categories.index');
     }
     Flash::success('Video category deleted successfully');
     return back();
 }