mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 02:58:14 -05:00
27 lines
621 B
PHP
27 lines
621 B
PHP
|
<?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']
|
||
|
];
|
||
|
}
|
||
|
}
|