Пример #1
0
 public function action_step5_post()
 {
     $sow = Config::get('sow');
     $sow->title = Input::get('title');
     $sow->body = false;
     if (Input::get('custom_sections')) {
         foreach (Input::get('custom_sections') as $key => $val) {
             $section = SowSection::find($key);
             $section->body = $val;
             $section->save();
         }
     }
     if (Input::get('variables')) {
         foreach (Input::get('variables') as $key => $val) {
             $sow->add_variable($key, $val);
         }
     }
     $sow->save();
     return Redirect::to(route('step6', array($sow->uuid)));
 }