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