content, 0, 36); $notification = new NotificationModel(); $notification->sender_id = $sender->id; $notification->receiver_id = $comment->owner_id; $notification->event_id = $comment->id; $notification->event_type = NotificationModel::TYPE_COMMENT_LIKED; $notification->event_info = [ 'comment' => ['id' => $comment->id, 'content' => $commentContent], ]; $notification->create(); } }