public function destroy($id)
 {
     try {
         Caste::destroy($id);
     } catch (QueryException $ex) {
         return Redirect::back()->with('alert-warning', 'Caste is in Use!');
     }
     return Redirect::route($this->route . 'index')->with('alert-success', 'Successfully Deleted!');
 }