public function store(ParameterRequest $request)
 {
     $date = Carbon::now();
     $parameter = new Parameter($request->all());
     $parameter->created_at = $date;
     $parameter->updated_at = $date;
     $parameter->save();
     return redirect()->route('parametros.index');
 }
Exemplo n.º 2
0
 /**
  * Update the specified resource in storage.
  *
  * @param  Parameter $parameter
  * @return Response
  */
 public function update($parameter)
 {
     $parameter->fill(Input::data());
     if (Input::data('module') && ($module = Module::find(Input::data('module')['id']))) {
         $parameter->module()->associate($module);
     }
     if (Input::data('type') === '选项' && Input::data('options')) {
         $options = str_replace(',', ',', Input::data('options'));
         $options = str_replace(';', ';', Input::data('options'));
         $parameter->options = json_encode(preg_split('/[;|,]\\s*/', $options));
     }
     $parameter->save();
     return $parameter;
 }