PHPackages                             nasution/laravel-implicit-routes - 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. nasution/laravel-implicit-routes

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

nasution/laravel-implicit-routes
================================

Laravel implicit routes, very similar like CodeIgniter.

v0.1.0(9y ago)625[1 issues](https://github.com/mul14/laravel-implicit-routes/issues)MITPHP

Since Aug 5Pushed 9y agoCompare

[ Source](https://github.com/mul14/laravel-implicit-routes)[ Packagist](https://packagist.org/packages/nasution/laravel-implicit-routes)[ RSS](/packages/nasution-laravel-implicit-routes/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Implicit Laravel Routes
=======================

[](#implicit-laravel-routes)

Make implicit routes to Laravel. It's very similar like CodeIgniter routes.

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

[](#installation)

```
composer require nasution/laravel-implicit-routes

```

Register service provider inside `providers` in `config/app.php` file.

```
Nasution\ImplicitRoutes\ServiceProvider::class,
```

Usage
-----

[](#usage)

Add `Route::anything()` to your routes file.

```
Route::anything();

Route::get('/', 'HomeController@welcome');
```

Now, you have capability to visit any path. For example, if you visit `http://localhost/products/shoes/42`, it's equivalent

```
Route::any('products/shoes/{param0}', 'ProductsController@shoes');

class ProductsContoller extends Controller
{
    public function shoes($id)
    {
        return $id; // 42
    }
}
```

If you visit address without second segment, it will use `index` method. For example `http://localhost/products`, it's equivalent

```
Route::any('products', 'ProductsController@index');

class ProductsContoller extends Controller
{
    public function index()
    {
        //
    }
}
```

License
-------

[](#license)

MIT © [Mulia Arifandi Nasution](http://mul14.net)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity53

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

Unknown

Total

1

Last Release

3567d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9d28dcc1dfa9e49fbf6c1ef5f7aa209b1b95c8deee9567201c3d02c556606388?d=identicon)[mul14](/maintainers/mul14)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/nasution-laravel-implicit-routes/health.svg)

```
[![Health](https://phpackages.com/badges/nasution-laravel-implicit-routes/health.svg)](https://phpackages.com/packages/nasution-laravel-implicit-routes)
```

###  Alternatives

[fisharebest/webtrees

webtrees online genealogy

73710.5k13](/packages/fisharebest-webtrees)[recca0120/twzipcode

twzipcode

13729.1k](/packages/recca0120-twzipcode)[mdwheele/swotphp

Identify email addresses or domains names that belong to colleges or universities.

6847.8k1](/packages/mdwheele-swotphp)[symbiote/silverstripe-dynamiclists

A Module that allows users to create custom data lists. These lists can then be used in a form control (specified via code by a developer) or within a user defined form to be able to define controlled vocabularies managed in a central location that might be used across several forms.

109.5k1](/packages/symbiote-silverstripe-dynamiclists)[pure_mashiro/magento2-bundlejs

Advanced JavaScript Bundling

111.5k](/packages/pure-mashiro-magento2-bundlejs)

PHPackages © 2026

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