PHPackages                             uutkukorkmaz/laravel-route-organizer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. uutkukorkmaz/laravel-route-organizer

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

uutkukorkmaz/laravel-route-organizer
====================================

A simple route organizing package for Laravel

v1.1.0(3y ago)0838MITPHP

Since Apr 23Pushed 3y ago1 watchersCompare

[ Source](https://github.com/uutkukorkmaz/laravel-route-organizer)[ Packagist](https://packagist.org/packages/uutkukorkmaz/laravel-route-organizer)[ RSS](/packages/uutkukorkmaz-laravel-route-organizer/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (4)Dependencies (8)Versions (5)Used By (0)

Laravel Route Organizer
=======================

[](#laravel-route-organizer)

[![Tests](https://github.com/uutkukorkmaz/laravel-route-organizer/actions/workflows/tests.yml/badge.svg)](https://github.com/uutkukorkmaz/laravel-route-organizer/actions/workflows/tests.yml/badge.svg)[![Language](https://camo.githubusercontent.com/21e0afd2e077b80051531506c9aa059c34bebe3650e5e7ba00d86bde50bd7e84/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f746f702f7575746b756b6f726b6d617a2f6c61726176656c2d726f7574652d6f7267616e697a6572)](https://camo.githubusercontent.com/21e0afd2e077b80051531506c9aa059c34bebe3650e5e7ba00d86bde50bd7e84/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c616e6775616765732f746f702f7575746b756b6f726b6d617a2f6c61726176656c2d726f7574652d6f7267616e697a6572)[![Licence](https://camo.githubusercontent.com/39cc70dbc7db2ab0e535eb1531a92d98e276d13a6db560dec4e5311a28abdf2f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f7575746b756b6f726b6d617a2f6c61726176656c2d726f7574652d6f7267616e697a6572)](https://camo.githubusercontent.com/39cc70dbc7db2ab0e535eb1531a92d98e276d13a6db560dec4e5311a28abdf2f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f7575746b756b6f726b6d617a2f6c61726176656c2d726f7574652d6f7267616e697a6572)[![Release](https://camo.githubusercontent.com/8caeea27406a3ae3c9acdc6cf636825db60d68b6d95fc42bfd8305ff157af104/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f7575746b756b6f726b6d617a2f6c61726176656c2d726f7574652d6f7267616e697a65723f646973706c61795f6e616d653d746167)](https://camo.githubusercontent.com/8caeea27406a3ae3c9acdc6cf636825db60d68b6d95fc42bfd8305ff157af104/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f7575746b756b6f726b6d617a2f6c61726176656c2d726f7574652d6f7267616e697a65723f646973706c61795f6e616d653d746167)

Introduction
------------

[](#introduction)

This package helps you keep your route files more organized, more convenient and easier to read. Using this package, you only need to go to specific route class and make adjustments in the place which is contains only relevant routes. No more searching through that messy route files line by line for the only one route you want to adjust.

A route class is just a regular class that looks like this:

```
use Uutkukorkmaz\RouteOrganizer\Contracts\RouteContract as RegistersRoute;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\FlightController;

class FlightRoutes implements RegistersRoute {

    public static function register(){
        Route::group([
        "prefix" => "flights",
        "as" => "flights.",
        "controller" => FlightController::class],function(){
            // your flight routes...
        });
    }

}
```

#### Why would you be using this package?

[](#why-would-you-be-using-this-package)

Being organized is really important while actively maintaining complex repositories, Route Organizer makes this process easier. And also your files going to be shorter than ever!

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require uutkukorkmaz/laravel-route-organizer
```

Usage
-----

[](#usage)

- ### Basic Usage

    [](#basic-usage)

Add the Organizer Facade in your route file. Let's say we have a `FlightRoutes` class and we'd like to use it in `routes/web.php`...

```
use Uutkukorkmaz\RouteOrganizer\Facades\Organizer;

Organizer::register([
    App\Routes\FlightRoutes::class,
]);
```

- ### Creating Routes

    [](#creating-routes)

You can create a route class from the console with artisan command. But please note that the CLI part is work in progress. And please feel free to [suggest a feature](https://github.com/uutkukorkmaz/laravel-route-organizer/issues/new) or contribute.

```
php artisan make:route FlightRoutes
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG.md](https://github.com/uutkukorkmaz/laravel-route-organizer/blob/main/CHANGELOG.md) file for more information on what are the changes recently.

Credits
-------

[](#credits)

Please see [all contributors](https://github.com/uutkukorkmaz/laravel-route-organizer/graphs/contributors).

Licence
-------

[](#licence)

The MIT Licence (MIT). Please see [LICENCE.md](https://github.com/uutkukorkmaz/laravel-route-organizer/blob/main/LICENCE.md) file for more information.

###  Health Score

26

—

LowBetter than 40% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~159 days

Total

4

Last Release

1101d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/19177587?v=4)[uutkukorkmaz](/maintainers/uutkukorkmaz)[@uutkukorkmaz](https://github.com/uutkukorkmaz)

---

Top Contributors

[![uutkukorkmaz](https://avatars.githubusercontent.com/u/19177587?v=4)](https://github.com/uutkukorkmaz "uutkukorkmaz (1 commits)")

---

Tags

laravel-routeroute organizerlaravel route organizer

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/uutkukorkmaz-laravel-route-organizer/health.svg)

```
[![Health](https://phpackages.com/badges/uutkukorkmaz-laravel-route-organizer/health.svg)](https://phpackages.com/packages/uutkukorkmaz-laravel-route-organizer)
```

###  Alternatives

[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

79227.1M227](/packages/laravel-mcp)[spatie/laravel-health

Monitor the health of a Laravel application

88212.7M188](/packages/spatie-laravel-health)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.4M354](/packages/psalm-plugin-laravel)[masterix21/laravel-licensing

Laravel licensing package with polymorphic assignment to any model, activation keys, expirations/renewals, and seat control via LicenseUsage. Supports offline verification with public-key–signed tokens, a CLI to generate/rotate/revoke keys, and an extensible architecture via config and contracts.

1614.1k4](/packages/masterix21-laravel-licensing)[forjedio/inertia-table

Backend-driven dynamic tables for Laravel + Inertia.js

272.0k](/packages/forjedio-inertia-table)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

265.2k](/packages/aedart-athenaeum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
