Skip to content

Commit 5d806db

Browse files
committed
add raw response format to JsonApiResponse
1 parent 95168f0 commit 5d806db

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Http/JsonApiResponse.php

+1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ protected function serializeResponse(mixed $response): mixed
181181
return match ($requesterAccepts) {
182182
'application/json' => $response instanceof Builder ? $response->simplePaginate() : $response,
183183
'application/vnd.api+json' => Apiable::toJsonApi($response),
184+
'raw' => $response,
184185
default => throw new HttpException(406, 'Not acceptable response formatting'),
185186
};
186187
}

0 commit comments

Comments
 (0)