Argument #1 ($values) must be of type array, string given

Pardon, I don't understand what the error is? I'm trying create comment for topic. I got these error.
Argument #1 ($values) must be of type array, string given

//

public ?array $data = [];
//

$record = Comment::create([
    array_merge($data, [
        'user_id' => auth()->id(),
        'topic_id' => $this->topic->id,
    ]),
]);

Thank you.
Was this page helpful?