├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Facades │ └── MultiKyeRouteBinding.php ├── HasMultipleRouteBindingKeys.php └── MultiKyeRouteBindingServiceProvider.php └── tests ├── App ├── Profile.php ├── User.php └── database │ └── migrations │ ├── 2014_10_12_000000_create_users_table.php │ └── 2014_10_12_000001_create_profiles_table.php └── LaravelIntegrationTest.php /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /vendor 3 | /build 4 | composer.lock 5 | .phpunit.result.cache -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Facades/MultiKyeRouteBinding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/src/Facades/MultiKyeRouteBinding.php -------------------------------------------------------------------------------- /src/HasMultipleRouteBindingKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/src/HasMultipleRouteBindingKeys.php -------------------------------------------------------------------------------- /src/MultiKyeRouteBindingServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/src/MultiKyeRouteBindingServiceProvider.php -------------------------------------------------------------------------------- /tests/App/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/tests/App/Profile.php -------------------------------------------------------------------------------- /tests/App/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/tests/App/User.php -------------------------------------------------------------------------------- /tests/App/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/tests/App/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /tests/App/database/migrations/2014_10_12_000001_create_profiles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/tests/App/database/migrations/2014_10_12_000001_create_profiles_table.php -------------------------------------------------------------------------------- /tests/LaravelIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/touhidurabir/laravel-multi-key-route-binding/HEAD/tests/LaravelIntegrationTest.php --------------------------------------------------------------------------------