2017-02-10 52 views
3

我使用Laravel 5.4,我送与下面的代码降价可邮寄:Laravel 5.4降价电子邮件人品问题

public function build() 
{ 
    return $this->markdown('emails.userWasRegistered') 
     ->with('user', $this->user); 
} 

降价

@component('mail::message') 

    # Welcome 

    Thank you for registering, you are registered as a {{ $user->role }} 

    @component('mail::button', ['url' => $url]) 
    Login 
    @endcomponent 

@endcomponent 

但产量ISN”它应该是什么,对吧?

HTML

enter image description here

HTML源

enter image description here

任何想法可能什么错?

+0

该表格从哪里生成? –

+0

这是按钮:@component – Notflip

+0

您需要在此处粘贴组件标记。 –

回答

4

我知道发生了什么事。这是因为你缩进了你的模板。在减价时,如果你知道我的意思,那么你缩进被解释为“代码块”的东西,应该按照原样显示而不是计算。

like this you <strong>see</strong>? 

所以只是不要缩进你的代码。

+0

你是对的!感谢上帝,我永远不会遇到这种情况。谢谢! – Notflip

+0

上帝这花了我很多年寻找。谢谢 –