Adam
Adam

Reputation: 29039

Laravel: Mail markup for single newline?

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:

enter image description here

Why is there no line break before Second line?

Upvotes: 4

Views: 5988

Answers (1)

Nikolai Tenev
Nikolai Tenev

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

Related Questions