29 lines
785 B
PHP
29 lines
785 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources\Messaging;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use App\Http\Resources\UserResource;
|
|
|
|
class ConversationResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'label' => $this->label,
|
|
'isGroup' => $this->is_group,
|
|
'participants' => UserResource::collection($this->whenLoaded('users')),
|
|
'lastMessage' => new MessageResource($this->whenLoaded('latestMessage')),
|
|
'createdAt' => $this->created_at,
|
|
'updatedAt' => $this->updated_at,
|
|
];
|
|
}
|
|
}
|