@extends('layouts.app') @section('title', 'Notification & Escalation Engine') @push('styles') @endpush @section('content') @php $actionsHtml = '
'; @endphp @include('components.page-header', [ 'title' => 'Intelligence Alert Engine', 'description' => 'Manage intelligent alerts, escalation workflows, reminders, and multi-channel communication templates.', 'breadcrumbs' => ['Home' => route('admin.dashboard'), 'Notifications' => '#'], 'actions' => $actionsHtml ])

Architect Alert Template

Design dynamic multi-channel notification blueprints with enterprise-grade placeholders.

@csrf

PRO TIP: Placeholders are auto-injected during the escalation trigger process.

Instant Test Sequence

@csrf

Recent Transmissions

@foreach($reminders->take(6) as $r)
{{ strtoupper($r->module) }}#{{ $r->module_id }} {{ $r->status }} {{ $r->created_at->diffForHumans() }}
@endforeach

Escalation Workflow Architect

Configure automatic escalation pathways for unresolved critical events.

@csrf

Active Alert Repositories

@foreach($templates as $t) @php $badgeClass = match($t->channel) { 'in_app' => 'badge-inapp', 'email' => 'badge-email', 'whatsapp' => 'badge-whatsapp', 'sms' => 'badge-sms', default => 'badge-low' }; @endphp
{{ str_replace('_', ' ', strtoupper($t->channel)) }}

{{ $t->name }}

{{ $t->slug }}

{{ $t->body }}

Last updated 2 days ago
@endforeach
@endsection