├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── HasHashid.php ├── HashidRouting.php └── HashidScope.php └── tests ├── HasHashidTest.php ├── HashidRoutingTest.php ├── Models ├── Comment.php ├── Item.php ├── ItemWithCustomRouteKeyName.php └── Vendor.php ├── TestCase.php ├── config └── hashids.php └── database ├── factories ├── CommentFactory.php ├── ItemFactory.php └── VendorFactory.php └── migrations ├── 2019_07_10_222200_create_items_table.php ├── 2022_06_15_000000_create_comments_table.php └── 2022_06_15_000000_create_vendors_table.php /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/HasHashid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/src/HasHashid.php -------------------------------------------------------------------------------- /src/HashidRouting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/src/HashidRouting.php -------------------------------------------------------------------------------- /src/HashidScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/src/HashidScope.php -------------------------------------------------------------------------------- /tests/HasHashidTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/HasHashidTest.php -------------------------------------------------------------------------------- /tests/HashidRoutingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/HashidRoutingTest.php -------------------------------------------------------------------------------- /tests/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/Models/Comment.php -------------------------------------------------------------------------------- /tests/Models/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/Models/Item.php -------------------------------------------------------------------------------- /tests/Models/ItemWithCustomRouteKeyName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/Models/ItemWithCustomRouteKeyName.php -------------------------------------------------------------------------------- /tests/Models/Vendor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/Models/Vendor.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/config/hashids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/config/hashids.php -------------------------------------------------------------------------------- /tests/database/factories/CommentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/database/factories/CommentFactory.php -------------------------------------------------------------------------------- /tests/database/factories/ItemFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/database/factories/ItemFactory.php -------------------------------------------------------------------------------- /tests/database/factories/VendorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/database/factories/VendorFactory.php -------------------------------------------------------------------------------- /tests/database/migrations/2019_07_10_222200_create_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/database/migrations/2019_07_10_222200_create_items_table.php -------------------------------------------------------------------------------- /tests/database/migrations/2022_06_15_000000_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/database/migrations/2022_06_15_000000_create_comments_table.php -------------------------------------------------------------------------------- /tests/database/migrations/2022_06_15_000000_create_vendors_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtvs/eloquent-hashids/HEAD/tests/database/migrations/2022_06_15_000000_create_vendors_table.php --------------------------------------------------------------------------------