soltancode/return-response
Simple package for returning standard json responses for Laravel.
2,535
5
| Install | |
|---|---|
composer require soltancode/return-response |
|
| Latest Version: | v1.0.1 |
| PHP: | ^7.3|^8.0 |
| License: | MIT |
| Last Updated: | Sep 30, 2022 |
| Links: | GitHub · Packagist |
Maintainer: soltancode
ReturnResponse
Simple package for returning standard json responses for Laravel Framework.
Installation
composer require soltancode/return-response
Usage
If you use it as class (facade), import this:
use Soltancode\ReturnResponse\Facades\ReturnResponse;
Code example:
// $httpResponse = 200;
// $data = ['success' => true];
// $message = "Operation done successfully.";
# Using as class:
return ReturnResponse::response($httpResponse, $data, $message);
# Using as helper:
return returnResponse()->response($httpResponse, $data, $message);
Response example:
{
"status_code": 200,
"message": "Operation done successfully.",
"count": 1,
"data": {
"success": true
}
}
Other Packages
SendRequest - PHP cURL class that makes it easy to send HTTP requests and integrate with web APIs.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Related Packages
soltancode/send-request
Simple package for Laravel that makes it easy to send HTTP requests and integrat...
2,551
2
negartarh/apiwrapper
Super Fast, Lightweight, Standard, Octane Compatible, and High Customizable pack...
1,038
40