├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── migrations ├── 2023_02_24_000000_create_taggables_table.php └── 2023_02_24_000000_create_tags_table.php ├── phpunit.xml ├── src ├── .editorconfig ├── Models │ └── Tag.php ├── Scopes │ ├── TagUsedScopes.php │ └── TaggableScopes.php ├── Taggable.php └── TagifyServiceProvider.php └── tests ├── TagifyModelUsageTest.php ├── TagifyStringUsageTest.php ├── TagifyTagCountTest.php ├── TestCase.php └── stubs ├── LessonStub.php └── TagStub.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/composer.lock -------------------------------------------------------------------------------- /migrations/2023_02_24_000000_create_taggables_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/migrations/2023_02_24_000000_create_taggables_table.php -------------------------------------------------------------------------------- /migrations/2023_02_24_000000_create_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/migrations/2023_02_24_000000_create_tags_table.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/src/Models/Tag.php -------------------------------------------------------------------------------- /src/Scopes/TagUsedScopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/src/Scopes/TagUsedScopes.php -------------------------------------------------------------------------------- /src/Scopes/TaggableScopes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/src/Scopes/TaggableScopes.php -------------------------------------------------------------------------------- /src/Taggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/src/Taggable.php -------------------------------------------------------------------------------- /src/TagifyServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/src/TagifyServiceProvider.php -------------------------------------------------------------------------------- /tests/TagifyModelUsageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/tests/TagifyModelUsageTest.php -------------------------------------------------------------------------------- /tests/TagifyStringUsageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/tests/TagifyStringUsageTest.php -------------------------------------------------------------------------------- /tests/TagifyTagCountTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/tests/TagifyTagCountTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/stubs/LessonStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/tests/stubs/LessonStub.php -------------------------------------------------------------------------------- /tests/stubs/TagStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usamamuneerchaudhary/laravel-tagify/HEAD/tests/stubs/TagStub.php --------------------------------------------------------------------------------