摘要: 实现重置密码逻辑:用户输入邮箱,点击发送重置邮件到本邮箱按钮,然后后端检测成功后,发送重置邮件给该邮箱。后端响应一个已发送邮件信息给用户。后端部分:api.php中添加route:新建这个PasswordResetController及添加create方法:执行:php artisan make:controller PasswordResetController用一个类来记录重置的请求信息,创建... 阅读全文
posted @ 2020-05-16 23:16 dzkjz 阅读(65) 评论(0) 推荐(0) 编辑
摘要: Likes PolyMorphic Relationship这个原教程的likes 其实可以就在post user topic 之间写非多态模型关联。为了示例,写这个多态的关联;一般情况下可以不这么写。更多可以参考:https://laravel.com/docs/7.x/eloquent-relationships#polymorphic-relationships逻辑上原教程就是把likes当... 阅读全文
posted @ 2020-05-16 20:42 dzkjz 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Topic Update首先更新api.php添加一个routeTopicController.php增加这个update方法。update方法需要一个Request参数,直接用custom request 来处理,这样字段验证也方便。执行:php artisan make:request TopicUpdateRequest 'required|string|max:255', ]... 阅读全文
posted @ 2020-05-16 13:52 dzkjz 阅读(76) 评论(0) 推荐(0) 编辑
摘要: Moving to CRUDTopic Model and Post Model Migration执行:php artisan make:model Topic -mphp artisan make:model Post -mid(); $table->string('title'); $table->unsignedBigInteger('user_... 阅读全文
posted @ 2020-05-16 00:14 dzkjz 阅读(44) 评论(0) 推荐(0) 编辑