Converted all notification emails to the branded layout by routing them through a shared Blade template and swapping

the MailMessage builders to use view(). This keeps the existing copy/labels but aligns the look with resources/views/
  emails/partials/layout.blade.php. I also switched the customer add‑on receipt notification to reuse the existing
  branded view and added missing translations for the upload pipeline alert.
This commit is contained in:
Codex Agent
2025-12-23 14:03:42 +01:00
parent 20ff3044e2
commit 207725d460
35 changed files with 1247 additions and 528 deletions

View File

@@ -82,6 +82,10 @@ class EventMemberController extends Controller
$member->refresh();
if (! $user->hasVerifiedEmail()) {
$user->sendEmailVerificationNotification();
}
return (new EventMemberResource($member))->response()->setStatusCode(201);
}