@if(session('success'))
{{ session('success') }}
@endif

{{ __('Notification Preferences') }}

{{ __('Choose how and when you want to be notified.') }}

{{-- Global toggles --}}

{{ __('Notification Channels') }}

{{ __('Email Notifications') }}

{{ __('Receive notifications via email') }}

{{ __('In-App Notifications') }}

{{ __('Show notifications inside') }} {{ config('app.name') }}

{{ __('Slack Notifications') }}

{{ __('Send notifications to your Slack channel') }}

{{-- Per-event toggles --}}

{{ __('Event Notifications') }}

{{ __('Fine-tune which events trigger notifications on each channel.') }}

@php $eventLabels = [ 'newConversation' => ['label' => __('New conversation'), 'desc' => __('When a new email or message arrives')], 'assignment' => ['label' => __('Assignment'), 'desc' => __('When a conversation is assigned to you')], 'aiDraftReady' => ['label' => __('AI draft ready'), 'desc' => __('When an AI draft is ready for review')], 'teamMention' => ['label' => __('Team mention'), 'desc' => __('When someone mentions you in a note')], 'contactReply' => ['label' => __('Contact reply'), 'desc' => __('When a contact replies to your message')], 'campaignComplete' => ['label' => __('Campaign complete'), 'desc' => __('When an email campaign finishes sending')], 'weeklyDigest' => ['label' => __('Weekly digest'), 'desc' => __('Summary of your weekly activity')], 'billingAlerts' => ['label' => __('Billing alerts'), 'desc' => __('Payment reminders and plan changes')], ]; @endphp @foreach($eventLabels as $key => $event) @endforeach
{{ __('Event') }} {{ __('Email') }} {{ __('In-App') }} {{ __('Slack') }}

{{ $event['label'] }}

{{ $event['desc'] }}

{{-- Save --}}