/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     //
     $telo = UnitKerja::find($id);
     $data = array('value' => $telo, 'unitkerja' => UnitKerja::DropDownUnit($id), 'eselon' => Eselon::DropdownEselon());
     return Response::json($data);
 }
 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     //
     $data = array('value' => SatuanKerja::find($id), 'unitkerja' => UnitKerja::DropDownUnit());
     return Response::json($data);
 }