name = $name; $notification->date = date('Y-m-d H:i:s'); $notification->read = 0; $notification->type = $type; $notification->value = $message; $notification->save(); } public static function readNotificationByID($notification_id) { self::readNotification(new notification\Notification($notification_id)); } public static function readNotification($notification) { $notification->read = 1; $notification->save(); } }