Split routes

This commit is contained in:
James Brooks
2017-10-01 11:30:26 +01:00
parent a0a76ffbfb
commit e426eff98c
2 changed files with 59 additions and 15 deletions
-15
View File
@@ -45,21 +45,6 @@ class SetupRoutes
'as' => 'get:setup',
'uses' => 'SetupController@getIndex',
]);
$router->post('step1', [
'as' => 'post:setup.step1',
'uses' => 'SetupController@postStep1',
]);
$router->post('step2', [
'as' => 'post:setup.step2',
'uses' => 'SetupController@postStep2',
]);
$router->post('step3', [
'as' => 'post:setup.step3',
'uses' => 'SetupController@postStep3',
]);
});
}
}