sender_id = $sender->id; $notification->receiver_id = $article->owner_id; $notification->event_id = $article->id; $notification->event_type = NotificationModel::TYPE_ARTICLE_LIKED; $notification->event_info = [ 'article' => ['id' => $article->id, 'title' => $article->title], ]; $notification->create(); } }