/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     //
     $data = Input::All();
     $riwayat = Organisasi::find($id);
     if ($riwayat->delete()) {
         return Response::json(array('success' => TRUE));
     }
 }