Skip to content

Commit

Permalink
fix: branding missing from email
Browse files Browse the repository at this point in the history
  • Loading branch information
zanechua committed Sep 3, 2021
1 parent 491c1e4 commit 96c8f31
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions resources/views/vendor/mail/html/header.blade.php
Expand Up @@ -4,6 +4,7 @@
@if (trim($slot) === 'Laravel')
<img src="https://laravel.com/img/notification-logo.png" class="logo" alt="Laravel Logo">
@else
<div style="padding-bottom: 10px;"><img src="{{ asset('assets/img/logo.png') }}" height="70" alt="InvoiceNeko"/></div>
{{ $slot }}
@endif
</a>
Expand Down
2 changes: 2 additions & 0 deletions resources/views/vendor/mail/html/message.blade.php
Expand Up @@ -22,6 +22,8 @@
@slot('footer')
@component('mail::footer')
© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
<a href="{{ route('privacy') }}" target="_blank" rel="nofollow noopener noreferrer">Privacy Policy</a>
<a href="{{ route('terms') }}" target="_blank" rel="nofollow noopener noreferrer">Terms & Conditions</a>
@endcomponent
@endslot
@endcomponent
2 changes: 2 additions & 0 deletions resources/views/vendor/mail/text/message.blade.php
Expand Up @@ -22,6 +22,8 @@
@slot('footer')
@component('mail::footer')
© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
<a href="{{ route('privacy') }}" target="_blank" rel="nofollow noopener noreferrer">Privacy Policy</a>
<a href="{{ route('terms') }}" target="_blank" rel="nofollow noopener noreferrer">Terms & Conditions</a>
@endcomponent
@endslot
@endcomponent

0 comments on commit 96c8f31

Please sign in to comment.