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