Fix app name phrasing and refresh blog seed dates
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-04 12:20:19 +01:00
parent fae5ec26fb
commit 1afd49bd24
16 changed files with 66 additions and 50 deletions

View File

@@ -21,7 +21,10 @@ class Welcome extends Mailable
public function envelope(): Envelope
{
return new Envelope(
subject: __('emails.welcome.subject', ['name' => $this->user->fullName]),
subject: __('emails.welcome.subject', [
'name' => $this->user->fullName,
'app_name' => config('app.name'),
]),
);
}
@@ -39,4 +42,4 @@ class Welcome extends Mailable
{
return [];
}
}
}