diff --git a/app/Controllers/Notifications.php b/app/Controllers/Notifications.php
index faeb683..407790c 100755
--- a/app/Controllers/Notifications.php
+++ b/app/Controllers/Notifications.php
@@ -102,11 +102,11 @@ class Notifications extends BaseController
$receiving_status = $success['receiving_status'];
$parents_status = $success['receiving_status'];
$history_msg = strtolower(gettype($success)) == "string" ? $success : json_encode($success['reponse']);
- session()->setFlashdata('success', 'Message : ' . $success['message']);
+ session()->setFlashdata('success', 'Message : Success');
$this->logger->info("Whatsapp : Reponse = " . $success['message']);
} catch (\Exception $e) {
$this->logger->error("Whatsapp : Exception Message = " . $e->getMessage() . "
File: " . $e->getFile() . "
Line: " . $e->getLine() . "
");
- session()->setFlashdata('error', 'Message: ' . $e->getMessage());
+ session()->setFlashdata('error', 'Message: Failed');
$history_msg = strtolower(gettype($success)) == "string" ? $success : json_encode($success['reponse']);
}
$NotificationModel = new NotificationModel();
diff --git a/app/Views/customer_form.php b/app/Views/customer_form.php
index 9db1477..df0ed26 100644
--- a/app/Views/customer_form.php
+++ b/app/Views/customer_form.php
@@ -68,7 +68,7 @@