├── .php_cs.dist.php ├── .phpunit.cache └── test-results ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── prefixed-ids.php └── src ├── Exceptions ├── NoPrefixConfiguredForModel.php └── NoPrefixedModelFound.php ├── Models └── Concerns │ └── HasPrefixedId.php ├── PrefixedIds.php └── PrefixedIdsServiceProvider.php /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /.phpunit.cache/test-results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/.phpunit.cache/test-results -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/composer.json -------------------------------------------------------------------------------- /config/prefixed-ids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/config/prefixed-ids.php -------------------------------------------------------------------------------- /src/Exceptions/NoPrefixConfiguredForModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/src/Exceptions/NoPrefixConfiguredForModel.php -------------------------------------------------------------------------------- /src/Exceptions/NoPrefixedModelFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/src/Exceptions/NoPrefixedModelFound.php -------------------------------------------------------------------------------- /src/Models/Concerns/HasPrefixedId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/src/Models/Concerns/HasPrefixedId.php -------------------------------------------------------------------------------- /src/PrefixedIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/src/PrefixedIds.php -------------------------------------------------------------------------------- /src/PrefixedIdsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spatie/laravel-prefixed-ids/HEAD/src/PrefixedIdsServiceProvider.php --------------------------------------------------------------------------------