| 12345678910111213141516 |
- <?php
- namespace App\Components;
- trait ApiResponse
- {
- public function response($data, int $code = 200,string $message = null)
- {
- $response = ["status_code"=>$code,"data"=>$data,"message"=>$message];
- header("Content-Type","application/json; charset=UTF-8");
- echo json_encode($response,JSON_UNESCAPED_UNICODE);
- exit();
- }
- }
|