Skip to content

Instantly share code, notes, and snippets.

@M4R14
Created February 9, 2018 16:20
Show Gist options
  • Select an option

  • Save M4R14/a99a3277f64224ea420cb9017c7f78ee to your computer and use it in GitHub Desktop.

Select an option

Save M4R14/a99a3277f64224ea420cb9017c7f78ee to your computer and use it in GitHub Desktop.
<?php
// ....
protected function mapWebRoutes()
{
Route::group([
'middleware' => 'web',
'namespace' => $this->namespace,
], function ($router) {
require base_path('routes/web/main.php');
require base_path('routes/web/backend.php');
});
}
// ....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment