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