diff --git a/resources/views/vendor/mail/html/message.blade.php b/resources/views/vendor/mail/html/message.blade.php index 2ad23a66e2da..49f7470cec30 100644 --- a/resources/views/vendor/mail/html/message.blade.php +++ b/resources/views/vendor/mail/html/message.blade.php @@ -2,7 +2,7 @@ {{-- Header --}} @slot('header') @component('mail::header', ['url' => config('app.url')]) - {{ config('app.name') }} + {{ setting('app_name', config('app.name')) }} @endcomponent @endslot @@ -21,7 +21,7 @@ {{-- Footer --}} @slot('footer') @component('mail::footer') - © {{ date('Y') }} {{ config('app.name') }}. All rights reserved. + © {{ date('Y') }} {{ setting('app_name', config('app.name')) }}. All rights reserved. @endcomponent @endslot @endcomponent diff --git a/resources/views/vendor/mail/markdown/message.blade.php b/resources/views/vendor/mail/markdown/message.blade.php index b409c71cb64a..b565e69073a3 100644 --- a/resources/views/vendor/mail/markdown/message.blade.php +++ b/resources/views/vendor/mail/markdown/message.blade.php @@ -2,7 +2,7 @@ {{-- Header --}} @slot('header') @component('mail::header', ['url' => config('app.url')]) - {{ config('app.name') }} + {{ setting('app_name', config('app.name')) }} @endcomponent @endslot @@ -21,7 +21,7 @@ {{-- Footer --}} @slot('footer') @component('mail::footer') - © {{ date('Y') }} {{ config('app.name') }}. All rights reserved. + © {{ date('Y') }} {{ setting('app_name', config('app.name')) }}. All rights reserved. @endcomponent @endslot @endcomponent diff --git a/resources/views/vendor/notifications/email.blade.php b/resources/views/vendor/notifications/email.blade.php index 5623cfa041a8..ef36190c04b2 100644 --- a/resources/views/vendor/notifications/email.blade.php +++ b/resources/views/vendor/notifications/email.blade.php @@ -71,7 +71,7 @@ - {{ setting('app_name') }} + {{ {{ setting('app_name', config('app.name')) }} }} @@ -140,7 +140,7 @@ class="button"

- Regards,
{{ setting('app_name') }} + Regards,
{{ {{ setting('app_name', config('app.name')) }} }}

@@ -176,7 +176,7 @@ class="button"

© {{ date('Y') }} - {{ setting('app_name') }}. + {{ {{ setting('app_name', config('app.name')) }} }}. All rights reserved.