fix var name

This commit is contained in:
2025-11-16 22:04:01 +10:00
parent 9a1ffe835c
commit c1a4fd13d5
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ class UpcomingWorkshops extends Mailable
->with([ ->with([
'email' => $this->email, 'email' => $this->email,
'workshops' => $this->workshops, 'workshops' => $this->workshops,
'unsubscribe' => $this->unsubscribeLink 'unsubscribeLink' => $this->unsubscribeLink
]); ]);
} }
} }

View File

@@ -25,7 +25,7 @@ class UserWelcome extends Mailable
->markdown('emails.welcome') ->markdown('emails.welcome')
->with([ ->with([
'email' => $this->email, 'email' => $this->email,
'unsubscribeLink' => $this->unsubscribeLink 'unsubscribe' => $this->unsubscribeLink
]); ]);
} }
} }