We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cf7a5a commit 126df09Copy full SHA for 126df09
app/Http/Routes/BaseRoutes.php
@@ -51,20 +51,20 @@ public function map(Router $router) {
51
52
// Account Routes
53
$router->group([
54
- 'profix' => 'account',
+ 'prefix' => 'account',
55
'middleware' => [
56
'auth',
57
'csrf'
58
]
59
], function () use ($router) {
60
- $router->get('account', [
+ $router->get('/', [
61
'as' => 'account',
62
'uses' => 'Base\AccountController@index'
63
]);
64
- $router->post('/account/password', [
+ $router->post('/password', [
65
'uses' => 'Base\AccountController@password'
66
67
- $router->post('/account/email', [
+ $router->post('/email', [
68
'uses' => 'Base\AccountController@email'
69
70
});
0 commit comments