Return status codes that describe the result and keep response bodies resource-backed: - Creation: return `new PostResource($post)` with `201 Created` (or `->response()->setStatusCode(201)`). - Validation failure: let a Form Request produce Laravel's `422 Unprocessable Entity` JSON response. - Successful deletion with no representation: return `response()->noContent()` for `204 No Content`. - Successful reads: use `200 OK` and a resource or resource collection. For example: ```php public func...
Scanned 9/5/2026
Install to Claude Code
npx -y skills add HoangNguyen0403/agent-skills-standard --skill laravel-api --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Laravel Api?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hoangnguyen0403-laravel-api-c0710175)More formats (shields.io, HTML) on the badges page.
Return status codes that describe the result and keep response bodies resource-backed:
- Creation: return `new PostResource($post)` with `201 Created` (or `->response()->setStatusCode(201)`).
- Validation failure: let a Form Request produce Laravel's `422 Unprocessable Entity` JSON response.
- Successful deletion with no representation: return `response()->noContent()` for `204 No Content`.
- Successful reads: use `200 OK` and a resource or resource collection.
For example:
```php
public function store(StorePostRequest $request): JsonResponse
{
$post = Post::create($request->validated());
return (new PostResource($post))->response()->setStatusCode(201);
}
public function destroy(Post $post): Response
{
$post->delete();
return response()->noContent();
}
```
Do not return `204` with a JSON body, and do not expose raw Eloquent models. Feature-test both the status and the resource shape.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!