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.
Thank you.
Thank you.
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,
]),
]);