摘要:
1.view部分:安装一个扩展包:Laravel-UEditor 1 composer require "overtrue/laravel-ueditor:~1.0"配置添加下面一行到 config/app.php 中 providers 部分: 1 Overtrue\LaravelUEditor\UEditorServiceProvider::class,发布配置文件与资源 1 php a... 阅读全文
摘要:
1.执行命令: 1 php artisan make:model Models/Question -cm2.设计问题的数据库迁移文件中的字段: 1 bigIncrements('id'); 18 $table->string('title'); 19 $table->text('content'); 20 $table-... 阅读全文
摘要:
资料 : Resetting Passwords 以及 Episode 35 - The Password Reset Flow由于之前的实现里默认自带重置找回密码功能,不再复述。默认的重置页面功能包含:指定用于A用户的重置链接输入B用户的邮箱提交后会提示 密码重置令牌无效,而密码输入不符合要求也有相应的错误提示,如果输入不存在的用户邮箱,会提示找不到,当且仅当用户A的重置链接输入正确的A用户... 阅读全文
摘要:
1.本地化 由于所有blade默认采用的是 _(‘’)方式输出标签文本,所以可以安装一个语言包,直接指定本地语言为zh_CN即可;安装 https://github.com/caouecs/Laravel-lang 语言包:Laravel 5.8-6.0 版本: 在项目文件夹打开命令行,执行 composer require caouecs/laravel-lang:~4.0Laravel 5.1... 阅读全文
摘要:
1.安装一个给用户提示的扩展包: 二选一: https://github.com/laracasts/flash 【我选的这个】https://github.com/oanhnn/laravel-flash-message使用方法:在需要使用falsh消息的控制器中,调用flash方法即可:如: 1 public function store() 2 { 3 //flash('Wel... 阅读全文
摘要:
1.本节需要发送验证邮件2.教程使用SendCloud发送邮件 【我使用的是mailtrap】3. 1 composer require laravel/ui安装完成后 1 php artisan ui vue –auth4.RegisterController中create方法内实现用户创建的默认值配置 1 class RegisterController extends Control... 阅读全文
摘要:
1.使用laragon新建laravel项目 zhihu2.配置env文件的database设置 DB_DATABASE=zhihu3.分析users表需要的字段4.修改数据库迁移文件: 1 class CreateUsersTable extends Migration 2 { 3 /** 4 * Run the migrations. 5 * 6 ... 阅读全文