Skip to content

Instantly share code, notes, and snippets.

@victorighalo
Last active July 24, 2018 09:44
Show Gist options
  • Save victorighalo/e77fbb8a7fba571f34f371f4c398e70e to your computer and use it in GitHub Desktop.
Save victorighalo/e77fbb8a7fba571f34f371f4c398e70e to your computer and use it in GitHub Desktop.
Laravel Route Service Provider
<!-- Register the cusom route here -->
public function map()
{
$this->mapCustomRoutes();
}
<!-- Replace custom with whatever name you choose -->
protected function mapCustomRoutes()
{
Route::Route::prefix('custom')
->middleware('web')
->namespace($this->namespace)
->group(base_path('routes/customroute.php'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment