*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'sender_name' => $this->name, 'sender_email' => $this->email, 'message_body' => $this->message, 'submitted_at' => $this->created_at->format('Y-m-d H:i:s'), 'category' => new CategoryResource($this->whenLoaded('category')), 'status' => new StatusResource($this->whenLoaded('status')), 'notes' => NoteResource::collection($this->whenLoaded('notes')), ]; } }