Set up Laravel notification system with NotificationType enum (5 types), NudgeNotification, DocumentUploadedNotification, and DeclarationOverdueNotification classes with database + mail channels. Add email templates, infrastructure tests, and fix existing NotificationController tests for workspace compatibility. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 lines
354 B
PHP
16 lines
354 B
PHP
<x-mail::message>
|
|
# Relance
|
|
|
|
Bonjour,
|
|
|
|
**{{ $senderName }}** de **{{ $firmName }}** vous envoie une relance concernant la déclaration suivante :
|
|
|
|
- **Client :** {{ $clientName }}
|
|
- **Type :** {{ $declarationType }}
|
|
- **Échéance :** {{ $dueDate }}
|
|
|
|
<x-mail::button :url="$url" color="primary">
|
|
Voir la déclaration
|
|
</x-mail::button>
|
|
</x-mail::message>
|