/**
  * Show the form for editing the specified JobItems.
  *
  * @param  int  $id
  * @return \Response
  */
 public function edit($id)
 {
     $JobItems = JobItems::find($id);
     return \View::make('JobItemss.edit', compact('JobItems'));
 }