Alerts & notifications

Thresholds for in-app operational alerts. External email/SMS stay off until mail and providers are configured.

@if(!$mailReady && ($alerts['email_notifications_enabled'] ?? false))

Email notifications are enabled but outbound mail is not configured (using log driver). Messages will not be delivered.

@endif @if($alerts['sms_notifications_enabled'] ?? false)

SMS notifications are marked enabled; connect an SMS provider before expecting delivery.

@endif
@csrf @method('PUT')