Fix/resource path #43
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request refactors the namespace structure for
CategoryResourceandTagResourceclasses and updates their references accordingly. The changes improve consistency and simplify the folder structure by removing the redundantApidirectory in the namespace path.Namespace refactoring:
app/Http/Resources/V1/Category/CategoryResource.php: Renamed fromapp/Http/Resources/Api/V1/Category/CategoryResource.phpand updated the namespace toApp\Http\Resources\V1\Category.app/Http/Resources/V1/Tag/TagResource.php: Renamed fromapp/Http/Resources/Api/V1/Tag/TagResource.phpand updated the namespace toApp\Http\Resources\V1\Tag.Reference updates:
app/Http/Controllers/Api/V1/Category/GetCategoriesController.php: Updated the import path forCategoryResourceto reflect the new namespace.app/Http/Controllers/Api/V1/Tag/GetTagsController.php: Updated the import path forTagResourceto reflect the new namespace.