@extends('layouts.admin') @section('title', 'Notification templates — '.config('app.name')) @section('page_title', 'Notification templates') @section('breadcrumbs') @endsection @section('content')

Transactional templates are code-backed (queued Notification classes). Campaign HTML is edited per campaign. Partner activation and welcome use the branded SYSTRONICS layout.

@foreach ($templates as $t) @php $previewKey = match ($t['key']) { 'partner.activation', 'partner.welcome' => $t['key'], default => null, }; @endphp @endforeach
KeyLabelDescriptionClass
{{ $t['key'] }} {{ $t['label'] }} {{ $t['description'] }} {{ class_basename($t['class']) }} @if ($previewKey) Preview @if ($t['key'] === 'partner.activation') Manual @endif @endif
@endsection