xgbnl/response

RESTFul style JSON responder.

dev-main 2024-03-06 08:08 UTC

This package is auto-updated.

Last update: 2024-04-06 08:24:54 UTC


README

RESTFul style JSON responder.

Support laravel.

install

composer require xgbnl/response dev-main

GET Method.

{
  "msg": "success",
  "code": 200,
  "data": null
}

POST、PATCH Methods.

{
  "msg": "created",
  "code": 201,
  "data": null
}

DELETE Method.

{
  "msg": "noContent",
  "code": 204,
  "data": null
}