Cookbook

Home Archives
2018-12-01

Multiple Routing Files in Laravel

routes

  • app/providers/RouteServiceProvider.php
1
2
3
4
5
6
7
8
9
10
protected function mapWebRoutes()
{
Route::group([
'middleware' => 'web',
'namespace' => $this->namespace,
], function ($router) {
require base_path('routes/another.web.php');
require base_path('routes/web.php');
});
}

References

  • https://www.crewstech.com/blog/2017/11/11/laravel-55-multiple-web-route-files-splitting-them-up
Share
  • laravel
  • multiple_route
  • route
Newer
mac
Older
PHP cs fixer for vim

Tags

  • OINP
  • Ontario_Immigrant_Nominee_Program
  • PR
  • Permanent_Residence
  • angular, css, scss, style, convert
  • aws
  • aws-cli
  • ctrl-c
  • ctrl-v
  • docker
  • elasticsearch
  • eslint
  • fluent-plugin-beats
  • fluent-plugin-grep
  • fluentd
  • jQuery
  • javascript
  • kibana
  • laravel
  • linux
  • mac
  • money_format
  • multiple_extension
  • multiple_route
  • mysql
  • number_format
  • openssl
  • react
  • route
  • timezone
  • tips
  • todo
  • trello, smallmodal, expandwidth
  • ubuntu 18.04 ubuntu-18.04 tip
  • ubuntu18.04
  • vscode
  • vue
  • window.top

Tag Cloud

OINP Ontario_Immigrant_Nominee_Program PR Permanent_Residence angular, css, scss, style, convert aws aws-cli ctrl-c ctrl-v docker elasticsearch eslint fluent-plugin-beats fluent-plugin-grep fluentd jQuery javascript kibana laravel linux mac money_format multiple_extension multiple_route mysql number_format openssl react route timezone tips todo trello, smallmodal, expandwidth ubuntu 18.04 ubuntu-18.04 tip ubuntu18.04 vscode vue window.top

Archives

  • May 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • July 2018
  • October 2017

Recent Posts

  • Ontario Immigrant Nominee Program-OINP
  • react_tips
  • javascript
  • mysql
  • aws-cli
© 2019 Sangmin Lee
Powered by Hexo
Home Archives