Laravel 4 is centered almost completely around routing. So organizing it is a must. There is no default organization for routes, but we can easily fix this.
Add the following to your `bootstrap/start.php` file:
<?
/**
* Require Routes for better organization.
*/
$files = new FilesystemIterator(dirname(dirname(__FILE__)) . '/app/routes');
foreach ($files as $file)
{
if ($file->isFile())
{
require $file->getPathname();
}
}
Happy coding!