没有为 [mail] Laravel 5.4 定义提示路径

2022-08-30 08:50:28

我正在尝试在视图中显示我的降价电子邮件,但我的邮件视图有问题,它显示如下

ErrorException in FileViewFinder.php line 112:
No hint path defined for [mail]. (View: /opt/lampp/htdocs/ppsb_new/core/resources/views/emails/tagihan.blade.php)

和我的降价邮件视图

@component('mail::message')
# TAGIHAN PEMBAYARAN

Berikut tagihan anda untuk pembayaran


@component('mail::button', ['url' => ''])
wut ?
@endcomponent

Gunakan kode tagihan tersebut untuk membayar tagihan.

Thanks,<br>
{{ config('app.name') }}
@endcomponent

在我看来,还有供应商,他们有他们的组件。


答案 1

您需要在可邮寄的方法中调用该方法 - 而不是该方法。请参阅下面的示例:markdown()build()view()

/**
 * Build the message.
 *
 * @return $this
 */
public function build()
{
    return $this->markdown('view-to-mail');
}

答案 2

要使用 Markdown 可邮寄消息,您必须更新 Mailable 类的方法,而不是 ,您必须使用 。buildview()markdown()

喜欢这个:

public function build()
{
    return $this->markdown('emails.registered');
}

推荐