refactor: 规范工单接口代码规范

This commit is contained in:
xboard
2023-12-12 06:22:18 +08:00
parent 20466d07df
commit 1270a60ad8
4 changed files with 40 additions and 12 deletions
+2 -1
View File
@@ -13,13 +13,14 @@ class TicketResource extends JsonResource
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
{
$data = [
"id" => $this['id'],
"level" => $this['level'],
"reply_status" => $this['reply_status'],
"status" => $this['status'],
"subject" => $this['subject'],
"message" => array_key_exists('message',$this->additional) ? MessageResource::collection($this['message']) : null,
"created_at" => $this['created_at'],
"updated_at" => $this['updated_at']
];