diff --git a/app/Http/Routes/SetupRoutes.php b/app/Http/Routes/SetupRoutes.php index 2fb6e4cd..d2a33515 100644 --- a/app/Http/Routes/SetupRoutes.php +++ b/app/Http/Routes/SetupRoutes.php @@ -17,6 +17,7 @@ use Illuminate\Contracts\Routing\Registrar; * This is the setup routes class. * * @author James Brooks + * @author Graham Campbell */ class SetupRoutes { @@ -30,7 +31,10 @@ class SetupRoutes public function map(Registrar $router) { $router->group(['middleware' => ['web', 'setup']], function (Registrar $router) { - $router->controller('setup', 'SetupController'); + $router->get('setup', 'SetupController@getIndex'); + $router->post('setup/step1', 'SetupController@postStep1'); + $router->post('setup/step2', 'SetupController@postStep2'); + $router->post('setup/step3', 'SetupController@postStep3'); }); } }