Laravel 5.7. I have a markdown mail:
@component('mail::message')
Hello, this is an email
@endcomponent
When it is sent, a footer is added:
© 2018 App Name. All rights reserved.
I want to edit this footer. I've published the vendor templates with php artisan vendor:publish --tag=laravel-mail
. I've tried editing vendor/mail/markdown/footer.blade.php
and vendor/mail/markdown/message.blade.php
. But in both cases the original footer stays on the email. Where am I going wrong?