-
+ |
-
+ |
diff --git a/resources/views/vendor/mail/html/header.blade.php b/resources/views/vendor/mail/html/header.blade.php
index 9d184e42..56197f8d 100644
--- a/resources/views/vendor/mail/html/header.blade.php
+++ b/resources/views/vendor/mail/html/header.blade.php
@@ -1,7 +1,12 @@
+@props(['url'])
|
diff --git a/resources/views/vendor/mail/html/layout.blade.php b/resources/views/vendor/mail/html/layout.blade.php
index 21d349b3..e55f6a6d 100644
--- a/resources/views/vendor/mail/html/layout.blade.php
+++ b/resources/views/vendor/mail/html/layout.blade.php
@@ -1,6 +1,7 @@
+{{ config('app.name') }}
@@ -33,7 +34,7 @@ width: 100% !important;
-
+ |
diff --git a/resources/views/vendor/mail/html/message.blade.php b/resources/views/vendor/mail/html/message.blade.php
index edd35cee..f272460d 100644
--- a/resources/views/vendor/mail/html/message.blade.php
+++ b/resources/views/vendor/mail/html/message.blade.php
@@ -1,27 +1,27 @@
-@component('mail::layout')
+
{{-- Header --}}
-@slot('header')
-@component('mail::header', ['url' => 'https://stamm-silva.de'])
+
+
{{ config('app.name') }}
-@endcomponent
-@endslot
+
+
{{-- Body --}}
{{ $slot }}
{{-- Subcopy --}}
@isset($subcopy)
-@slot('subcopy')
-@component('mail::subcopy')
+
+
{{ $subcopy }}
-@endcomponent
-@endslot
+
+
@endisset
{{-- Footer --}}
-@slot('footer')
-@component('mail::footer')
-© {{ date('Y') }} Stamm Silva.
-@endcomponent
-@endslot
-@endcomponent
+
+
+© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
+
+
+
diff --git a/resources/views/vendor/mail/html/themes/default.css b/resources/views/vendor/mail/html/themes/default.css
index 2483b116..df505bde 100644
--- a/resources/views/vendor/mail/html/themes/default.css
+++ b/resources/views/vendor/mail/html/themes/default.css
@@ -3,8 +3,7 @@
body,
body *:not(html):not(style):not(br):not(tr):not(code) {
box-sizing: border-box;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
- 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
position: relative;
}
diff --git a/resources/views/vendor/mail/text/message.blade.php b/resources/views/vendor/mail/text/message.blade.php
index 1ae9ed8f..80bce211 100644
--- a/resources/views/vendor/mail/text/message.blade.php
+++ b/resources/views/vendor/mail/text/message.blade.php
@@ -1,27 +1,27 @@
-@component('mail::layout')
+
{{-- Header --}}
- @slot('header')
- @component('mail::header', ['url' => config('app.url')])
+
+
{{ config('app.name') }}
- @endcomponent
- @endslot
+
+
{{-- Body --}}
{{ $slot }}
{{-- Subcopy --}}
@isset($subcopy)
- @slot('subcopy')
- @component('mail::subcopy')
+
+
{{ $subcopy }}
- @endcomponent
- @endslot
+
+
@endisset
{{-- Footer --}}
- @slot('footer')
- @component('mail::footer')
+
+
© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
- @endcomponent
- @endslot
-@endcomponent
+
+
+
| |