├── .editorconfig ├── .github ├── FUNDING.yml ├── SECURITY.md └── workflows │ └── run-tests.yml ├── LICENSE.md ├── README.md ├── composer.json └── src ├── UniqueTranslationRule.php ├── UniqueTranslationServiceProvider.php └── UniqueTranslationValidator.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/composer.json -------------------------------------------------------------------------------- /src/UniqueTranslationRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/src/UniqueTranslationRule.php -------------------------------------------------------------------------------- /src/UniqueTranslationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/src/UniqueTranslationServiceProvider.php -------------------------------------------------------------------------------- /src/UniqueTranslationValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezero-be/laravel-unique-translation/HEAD/src/UniqueTranslationValidator.php --------------------------------------------------------------------------------