Skip to content

Commit

Permalink
Update RouteServiceProvider.php
Browse files Browse the repository at this point in the history
- Fix capitalisation for stupid filesystems
  • Loading branch information
jaredkove authored Jun 21, 2018
1 parent bc94fd3 commit 1c4dedd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ protected function mapWebRoutes()
{
Route::middleware('web')
->namespace($this->namespace)
->group(__DIR__ . '/../routes/web.php');
->group(__DIR__ . '/../Routes/web.php');
}

protected function mapApiRoutes()
{
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)
->group(__DIR__ . '/../routes/api.php');
->group(__DIR__ . '/../Routes/api.php');
}
}
}

0 comments on commit 1c4dedd

Please sign in to comment.