/**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store()
 {
     //
     $data = Input::All();
     $data['tanggal'] = formatDate($data['tanggal']);
     $riwayat = new Organisasi($data);
     if ($riwayat->save()) {
         return Response::json(array('success' => true));
     }
 }
 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate($id)
 {
     $model = new Organisasi();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['Organisasi'])) {
         $model->attributes = $_POST['Organisasi'];
         if ($model->save()) {
             $this->redirect(array('view', 'id' => $model->id_organisasi));
         }
     }
     $this->render('create', array('model' => $model, 'id' => $id));
 }