如何从品牌中删除LARAVEL并在Laravel 5中使用自己的品牌

时间:2017-06-15 08:17:38

标签: laravel configuration branding

在Laravel 5中,我怎样才能删除" Laravel"从忘记密码电子邮件模板,并使用我自己的品牌?

请建议达到这个目的。

enter image description here

3 个答案:

答案 0 :(得分:3)

如果您只想更改品牌,则可以在.env文件中设置

APP_NAME=your_app_name

但是如果你想更改更多东西,例如页眉或页脚,那么你需要这样做:

运行这些命令

php artisan vendor:publish --tag=laravel-notifications
php artisan vendor:publish --tag=laravel-mail

然后在

/resources/views/vendor/mail/html/

您可以编辑所有组件并自定义所需内容。 例如,我编辑了句子保留所有权利。

中保留的所有测试
/resources/views/vendor/mail/html/message.blade.php

这就是我得到的:

enter image description here

答案 1 :(得分:2)

实际上来自import processing.video.*; Movie vid; void setup() { size(1600, 900); vid= new Movie(this, "Nova.mp4"); vid.loop(); } void movieEvent() { vid.read(); //I tried it without this movie.play() and it did not have any effect. vid.play(); } void draw() { image(vid, 0, 0); } 中的配置设置,称为app.php。还有一个名为name的环境变量。

https://github.com/laravel/laravel/blob/master/config/app.php#L15 - 配置值

https://github.com/laravel/laravel/blob/master/.env.example#L1 - 环境变量

答案 2 :(得分:2)

如果您想将名称更改为您自己的名称,您只需在.env文件中更新您的变量:

APP_NAME=*the-name-of-application*