Reputation: 29039
When I hit return in the email.blade.php
file it does not create a new line.
However, according to the markdown rules it should.
Thats my blade file:
@component('mail::message')
# Introduction
First line
Second line
third line...
@endcomponent
and that is how it looks in my browser:
Why is there no line break before Second line
?
Upvotes: 4
Views: 5988
Reputation: 475
Can you show the generated HTML?
I'm guessing it's because you're using soft line breaks instead of hard line breaks. More info here - soft vs hard line breaks.
Upvotes: 7