ApiResponse.php 366 B

12345678910111213141516
  1. <?php
  2. namespace App\Components;
  3. trait ApiResponse
  4. {
  5. public function response($data, int $code = 200,string $message = null)
  6. {
  7. $response = ["status_code"=>$code,"data"=>$data,"message"=>$message];
  8. header("Content-Type","application/json; charset=UTF-8");
  9. echo json_encode($response,JSON_UNESCAPED_UNICODE);
  10. exit();
  11. }
  12. }