Skip to content

Commit

Permalink
fix(regression): cannot pass props
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Dec 8, 2024
1 parent d9e7960 commit b44d517
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion framework/core/views/email/html/information.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-mail::html>
<x-mail::html :greeting="$greeting ?? null" :signoff="$signoff ?? null">
<x-slot:header>
<h2>{{ $title ?? $translator->trans('core.email.informational.default_title') }}</h2>
</x-slot:header>
Expand Down
2 changes: 1 addition & 1 deletion framework/core/views/email/html/notification.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-mail::html>
<x-mail::html :greeting="$greeting ?? null" :signoff="$signoff ?? null">
<x-slot:header>
<h2>{{ $title ?? $translator->trans('core.email.notification.default_title') }}</h2>
</x-slot:header>
Expand Down
2 changes: 1 addition & 1 deletion framework/core/views/email/plain/information.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-mail::plain>
<x-mail::plain :greeting="$greeting ?? null" :signoff="$signoff ?? null">
<x-slot:header>
{{ $title ?? $translator->trans('core.email.informational.default_title') }}
</x-slot:header>
Expand Down
2 changes: 1 addition & 1 deletion framework/core/views/email/plain/notification.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<x-mail::plain>
<x-mail::plain :greeting="$greeting ?? null" :signoff="$signoff ?? null">
<x-slot:header>
{{ $title ?? $translator->trans('core.email.notification.default_title') }}
</x-slot:header>
Expand Down

0 comments on commit b44d517

Please sign in to comment.