add notification server url

This commit is contained in:
2025-05-04 13:11:58 +03:30
parent 67efae2875
commit c758b9bb5b
3 changed files with 4 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ class NotificationService
try
{
$response = Http::retry(3)
->post(config('global_variables.NOTIFICATION_SERVER_URL'), $data)
->post(config('globalVariables.NOTIFICATION_SERVER_URL'), $data)
->throwIfServerError();
$response_status = json_decode($response->body())->status;