*/ 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'), ]; } }