Home > Blockchain >  How can remove the laravel logo from the email template in laravel 8
How can remove the laravel logo from the email template in laravel 8

Time:11-17

I want to remove the laravel logo from the email template. I am used to markdown mailable class.

CodePudding user response:

you need to publish the mail package’s resources.

you can use:

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

You should check the laravel mail document better: https://laravel.com/docs/8.x/mail

  • Related