Team Notification Alerts & Webhooks

Real-Time Team Alerts & Outbound Webhooks

Push instant notifications to your Slack, Discord, or Telegram channels when HOT leads are captured or prospects reply.

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($channels as $channel)
@if($channel->channel_type === 'slack') @elseif($channel->channel_type === 'discord') @elseif($channel->channel_type === 'telegram') @else @endif

{{ $channel->name }}

{{ strtoupper($channel->channel_type) }} Channel
{{ $channel->is_active ? 'Active' : 'Disabled' }}
@if($channel->notify_on_hot_lead) HOT Leads (Score >= 80) @endif @if($channel->notify_on_reply) Inbound Replies @endif
Last pinged: {{ $channel->last_notified_at ? $channel->last_notified_at->diffForHumans() : 'Never' }}
@csrf
@csrf @method('DELETE')
@empty

No alert channels connected yet

Connect Slack, Discord, or Telegram webhooks to get instantly notified when prospects respond or high-value leads are captured.

@endforelse

Connect Notification Channel

@csrf