Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

marcosdipaolo's avatar

Weird table tag at markdown email

Here's the view:

@component('mail::message')

    @component('mail::panel')
    Some text
    @endcomponent

    @component('mail::button', ['url' => config('app.url')])
    Name: {{$attendee->name}}
    @endcomponent

@endcomponent

Between the panel and the button i get:

<table class="action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation">

Does anyone knows the reason for this?

0 likes
5 replies
Sinnbeck's avatar
Sinnbeck
Best Answer
Level 102

Try removing all indent. Markdown parses indents as formatting

15 likes

Please or to participate in this conversation.