Use generic copy on messaging Integrations screens.
Deploy Ladill Care / deploy (push) Successful in 1m7s

Drop wallet/brand marketing language so credential setup reads as neutral configuration.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-12 18:40:04 +00:00
co-authored by Cursor
parent 30b96b3956
commit 8567209707
5 changed files with 22 additions and 21 deletions
@@ -60,7 +60,7 @@ class IntegrationsController extends Controller
return back()->withInput()->with('error', $result['error'] ?? 'Could not save SMS credentials.');
}
return back()->with('success', 'Ladill SMS connected. Outbound patient SMS will use your key and sender ID.');
return back()->with('success', 'SMS credentials saved.');
}
public function disconnectSms(Request $request, MessagingCredentialsService $credentials): RedirectResponse
@@ -78,7 +78,7 @@ class IntegrationsController extends Controller
$organization->id,
);
return back()->with('success', 'Ladill SMS disconnected.');
return back()->with('success', 'SMS disconnected.');
}
public function saveBird(Request $request, MessagingCredentialsService $credentials): RedirectResponse
@@ -113,7 +113,7 @@ class IntegrationsController extends Controller
return back()->withInput()->with('error', $result['error'] ?? 'Could not save Bird credentials.');
}
return back()->with('success', 'Ladill Bird connected. Outbound patient email will use your key and from address.');
return back()->with('success', 'Email credentials saved.');
}
public function disconnectBird(Request $request, MessagingCredentialsService $credentials): RedirectResponse
@@ -131,7 +131,7 @@ class IntegrationsController extends Controller
$organization->id,
);
return back()->with('success', 'Ladill Bird disconnected.');
return back()->with('success', 'Email disconnected.');
}
public function previewSenders(Request $request, CustomerSmsClient $sms): JsonResponse