PHPackages                             echosters/routable - 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. [Database &amp; ORM](/categories/database)
4. /
5. echosters/routable

ActiveLibrary[Database &amp; ORM](/categories/database)

echosters/routable
==================

Laravel Eloquent Routable Models For Resources Models

v1.1.0(5y ago)133MITPHP

Since Dec 26Pushed 5y ago1 watchersCompare

[ Source](https://github.com/khaledw62/routable)[ Packagist](https://packagist.org/packages/echosters/routable)[ RSS](/packages/echosters-routable/feed)WikiDiscussions main Synced today

READMEChangelog (2)DependenciesVersions (10)Used By (0)

Routable
========

[](#routable)

Routable is a Laravel package for dealing with resources models routes.

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

[](#installation)

Using [composer](https://getcomposer.org/) to install routable.

```
composer require echosters/routable
```

Configuration
-------------

[](#configuration)

in your `config\app.php`add in your `providers`

```
'providers' => [
    ...,
    Echosters\Routable\Providers\RoutableServiceProvider::class,
];
```

Preparing your model
--------------------

[](#preparing-your-model)

```
