/**
  * Remove the specified JobItems from storage.
  *
  * @param  int  $id
  * @return \Response
  */
 public function destroy($id)
 {
     JobItems::destroy($id);
     return \Redirect::route('jobitems.index');
 }