-3

enter image description here i'm facing this problem. anyone please guide me and help me to solve this problem

  • Share your sample how you are using it, ex: give your, model, view, controller sample code. – Ali Apr 15 '23 at 10:41

1 Answers1

1

I assume that you mean laravel's default email view.

  1. Run the command to publish laravel's default email view files:
php artisan vendor:publish --tag=laravel-mail
  1. Open resources/views/vendor/mail/html/footer.blade.php and change the $slot variable to what you want:
<tr>
<td>
<table class="footer" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td class="content-cell" align="center">
{{ Illuminate\Mail\Markdown::parse($slot) }} <-- here
</td>
</tr>
</table>
</td>
</tr>
Mahdi Rashidi
  • 411
  • 3
  • 8