/** * Store a newly created resource in storage. * * @return Response */ public function store() { // $unitkerja = new UnitKerja(Input::All()); if ($unitkerja->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() { $model = new UnitKerja(); // Uncomment the following line if AJAX validation is needed // $this->performAjaxValidation($model); if (isset($_POST['UnitKerja'])) { $model->attributes = $_POST['UnitKerja']; if ($model->save()) { $this->redirect(array('view', 'id' => $model->id_unit_kerja)); } } $this->render('create', array('model' => $model)); }