Dust out your bloated route file and split it up to keep things organized
class RouteServiceProvider extends ServiceProvider{ public function boot() { $this->routes(function () { Route::prefix('api/v1') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/api.php')); Route::prefix('webhooks') ->namespace($this->namespace) ->group(base_path('routes/webhooks.php')); Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/web.php')); if ($this->app->environment('local')) { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/local.php')); } }); }}
Tip given by @Philo01
Enjoyed This Tip?
Get access to all premium tutorials, video and text courses, and exclusive Laravel resources. Join our community of 10,000+ developers.
Recent Courses
Laravel 12 For Beginners: Your First Project
15 lessons
1 h 32 min
PhpStorm Junie AI for Laravel Projects: Crash Course
7 lessons
36 min
Laravel HTTP Client and 3rd-Party APIs
7 lessons
50 min