Laravel 5.3 notifications message customize
Asked Answered
E

1

6

I would like to customize this notification email message:

enter image description here

but i can't find where to change the parts marked with red color on my screenshot.

The "Regards" and the message at the bottom.

Eddo answered 11/11, 2016 at 9:53 Comment(3)
I have found the template for this email but it seems to me this cannot be changed.....it is hardcoded in /vendor/laravel/framework/src/Illuminate/Notifications/resources/views/email.blade.php maybe if i could copy it and edit it...but where do i specify that i want to use my NEW template?Eddo
I have found the solution laravel.com/docs/5.3/notifications#customizing-the-templates you need to publish the template and then you can edit it how you want it to. If someone wants free points then make an answer for this....Eddo
Solved along time agoEddo
M
6

Run the following command in terminal

php artisan vendor:publish --tag=laravel-notifications

and edit the blade template in

/resources/views/vendor/notifications/email.blade.php
Montes answered 13/11, 2016 at 18:13 Comment(1)
I was skeptical about this one at first but it's also mentioned in the official docs: laravel.com/docs/5.4/notifications#mail-notificationsSuture

© 2022 - 2024 — McMap. All rights reserved.