mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-16 13:10:52 +08:00
refactor: 规范工单接口代码规范
This commit is contained in:
26
app/Http/Resources/MessageResource.php
Normal file
26
app/Http/Resources/MessageResource.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
|
||||
class MessageResource extends JsonResource
|
||||
{
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function toArray(Request $request): array
|
||||
{
|
||||
return [
|
||||
"id" => $this['id'],
|
||||
"ticket_id" => $this['ticket_id'],
|
||||
"is_me" => $this['is_me'],
|
||||
"message" => $this["message"],
|
||||
"created_at" => $this['created_at'],
|
||||
"updated_at" => $this['updated_at']
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user