Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. public function store(Request $request)
  2. {
  3. $r=1;
  4. $tot = 185;
  5. while($r <= $tot){
  6. $encuesta = new CatelEncuesta;
  7. $encuesta->pregunta = $request->get('pregunta'.$r);
  8. $encuesta->respuesta = $request->get('respuesta'.$r);
  9. $encuesta->id_foto = $request->get('id');
  10. $encuesta->save();
  11. $r = $r+1;
  12. }
  13.  
  14. return redirect()->action('UsuariosController@index');
  15. // return view('catel.success')->with(['Enhorabuena haz completado el Test de catel']);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement