From b44d5175b65a8742a444b3c8ed9f0173fd0d696f Mon Sep 17 00:00:00 2001 From: Sami Mazouz Date: Sun, 8 Dec 2024 11:07:58 +0100 Subject: [PATCH] fix(regression): cannot pass props --- framework/core/views/email/html/information.blade.php | 2 +- framework/core/views/email/html/notification.blade.php | 2 +- framework/core/views/email/plain/information.blade.php | 2 +- framework/core/views/email/plain/notification.blade.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/framework/core/views/email/html/information.blade.php b/framework/core/views/email/html/information.blade.php index 36e78117e6..3192e9124f 100644 --- a/framework/core/views/email/html/information.blade.php +++ b/framework/core/views/email/html/information.blade.php @@ -1,4 +1,4 @@ - +

{{ $title ?? $translator->trans('core.email.informational.default_title') }}

diff --git a/framework/core/views/email/html/notification.blade.php b/framework/core/views/email/html/notification.blade.php index dfe74d0641..45063178b7 100644 --- a/framework/core/views/email/html/notification.blade.php +++ b/framework/core/views/email/html/notification.blade.php @@ -1,4 +1,4 @@ - +

{{ $title ?? $translator->trans('core.email.notification.default_title') }}

diff --git a/framework/core/views/email/plain/information.blade.php b/framework/core/views/email/plain/information.blade.php index 66c2a9bc45..bf0f2df31c 100644 --- a/framework/core/views/email/plain/information.blade.php +++ b/framework/core/views/email/plain/information.blade.php @@ -1,4 +1,4 @@ - + {{ $title ?? $translator->trans('core.email.informational.default_title') }} diff --git a/framework/core/views/email/plain/notification.blade.php b/framework/core/views/email/plain/notification.blade.php index 57de6f3886..c797a53fae 100644 --- a/framework/core/views/email/plain/notification.blade.php +++ b/framework/core/views/email/plain/notification.blade.php @@ -1,4 +1,4 @@ - + {{ $title ?? $translator->trans('core.email.notification.default_title') }}