From d982b97455fc05e319f51ba1c125a55f7c64540b Mon Sep 17 00:00:00 2001 From: Christiaan Goossens Date: Sun, 2 Apr 2017 09:23:58 +0200 Subject: [PATCH] Small redirect change --- src/Application/Overboeking.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/Overboeking.php b/src/Application/Overboeking.php index 0aeb017..ddfba0e 100644 --- a/src/Application/Overboeking.php +++ b/src/Application/Overboeking.php @@ -45,7 +45,7 @@ class Overboeking try { $ibanhelper = new IBAN(); Overboekingen::createOverboeking($ibanhelper->getIBAN($van), $naar, $bedrag, $omschrijving, "bg"); - return Redirect::create($request, $response, "/"); + return Redirect::create($request, $response, "/rekeningen/$van"); } catch (Exception $e) { return Redirect::create($request, $response, "/overboeking?$e"); }