E-mail markdown panel still doesn't work #32884
-
Description:E-mail markdown for panels seems to be broken. I use panels to make information standout, so i really need them. I've read several other related issues and tried all solutions, but it didn't work. I've started to upgrade my application to laravel 7.x (was on 5.8) when i came accross this issue. Tried to deintend everything (that did fix some headers). Tried to add empty lines (before, after, everywhere), but that didn't seem to work. Removing the panel is the only thing that works (then i can see a table without html). Steps To Reproduce:Create template: @component('mail::message')
@component('mail::panel')
@component('mail::table')
| a | b | c |
| --- | --- | --- |
1|2|3
@endcomponent
@endcomponent
@endcomponent Question?How can i fix my template to get panels to work? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
You might just want to raise an issue for this in the issue tracker. |
Beta Was this translation helpful? Give feedback.
-
Your markdown is invalid. Try @component('mail::message')
@component('mail::panel')
@component('mail::table')
| a | b | c |
| --- | --- | --- |
|1|2|3
@endcomponent
@endcomponent
@endcomponent |
Beta Was this translation helpful? Give feedback.
Your markdown is invalid.
Try