예제 #1
0
 public function insert()
 {
     $respuesta = Tour::agregar(Input::all());
     if ($respuesta['error'] == true) {
         return Redirect::to('tour/add')->with('mensaje', $respuesta['mensaje'])->withInput();
     } else {
         return Redirect::to('tours')->with('mensaje', $respuesta['mensaje']);
     }
 }