ariadiahmad / response-dcc-consultan
该包最新版本(1.1.1)没有提供许可信息。
这是针对Dcc Consultan.com公司的响应。
1.1.1
2021-05-28 08:06 UTC
Requires
- php: >=7.3
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-09-28 15:34:17 UTC
README
- 安装方法
composer require ariadiahmad/response-dcc-consultan
- 使用方法
- 如果成功
use AriadiAhmad\Response\ApiResponse;
$response = new ApiResponse();
- 无数据
$response = $response->setCode(200)->setMessage("Success Tambah Data")->setStatus(true)->response();
- 有数据
$response = $response->setCode(200)->setData($data)->setMessage("Success Tambah Data")->setStatus(true)->response();
- 如果失败
use AriadiAhmad\Response\ApiResponse;
$response = new ApiResponse();
$response = $response->setCode(404)->setMessage("Gagal Melihat Data")->setStatus(false)->response();
推荐
- Laravel
- Php 7.2