Skip to content

Instantly share code, notes, and snippets.

@nasrulhazim
Last active September 25, 2022 05:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nasrulhazim/422b863bd348dadeb240ca29470ec7e3 to your computer and use it in GitHub Desktop.
Save nasrulhazim/422b863bd348dadeb240ca29470ec7e3 to your computer and use it in GitHub Desktop.
Organise Laravel Routes
<?php
collect(
glob(base_path('/routes/web/*.php'))
)->each(function ($path) {
require $path;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment