@php $appName = $appName ?? 'Sistema'; $title = $title ?? 'Notificacion'; $intro = $intro ?? ''; $fields = $fields ?? []; $detailMessage = $detailMessage ?? null; $detailLabel = $detailLabel ?? 'Detalle'; $actionUrl = $actionUrl ?? null; $timestamp = $timestamp ?? now()->toDateTimeString(); @endphp {{ $title }} - {{ $appName }} @if(!empty($intro)) {{ $intro }} @endif @if(!empty($fields)) @foreach($fields as $field) {{ $field['label'] ?? '' }}: {{ $field['value'] ?? '' }} @endforeach @endif @if(!empty($detailMessage)) {{ $detailLabel }}: {{ $detailMessage }} @endif @if(!empty($actionUrl)) Accion: {{ $actionUrl }} @endif Enviado: {{ $timestamp }} Este correo fue generado automaticamente.