在使用带有标记语法laravel references的laravel可邮寄文件时,该标记使用双冒号语法,该语法映射到'views/vendor/mail'
文件夹。
如何在自己的应用程序中定义此双冒号速记?
例如
@component('mail::button') // Laravels built in mail shorthand
some text
@endcomponent
@component('mobile::button') // Shorthand I defined myself
some text
@endcomponent
答案 0 :(得分:2)
在服务提供商的启动方法中使用loadViewsFrom。
$this->loadViewsFrom('path', 'namespace');
之后,您将能够在刀片文件中使用 namesapce :: view 。