Laravel 5.8 做个知乎 19 —— 发信息
摘要:1 \database\migrations\2021_08_05_222058_create_messages_table.php public function up() { Schema::create('messages', function (Blueprint $table) { $ta
阅读全文
Vue 模态框 取消/提交后清除数据
摘要:代码 mounted(){ // 隐藏模态框 清空内容 $('#modal-send-message').on('hidden.bs.modal', function (){ document.getElementById("form").reset(); //$('#message_text').
阅读全文
Laravel 5.8 接口测试工具 barryvdh/laravel-debugbar
摘要:官方文档 https://github.com/barryvdh/laravel-debugbar 安装与使用 https://blog.csdn.net/leo09999/article/details/98946737 我的5.8版本不用配置,安装后可以直接用 "require-dev": {
阅读全文
Laravel 5.8 做个知乎 18 —— 点赞
摘要:1 创建表 php artisan make:model Vote -m public function up() { Schema::create('votes', function (Blueprint $table) { $table->bigIncrements('id'); $table-
阅读全文
Laravel 5.8 做个知乎 17 —— 重构邮件系统
摘要:1 类 1.1 \app\Mailer\Mailer.php 基类 <?php /** * Created by PhpStorm. * User: SUN * Date: 2021/8/2 * Time: 18:23 */ namespace App\Mailer; use Naux\Mail\S
阅读全文
Laravel 5.8 做个知乎 16 —— 用户关注 发送自定义的邮件通知
摘要:1 新建频道 1.1 \app\Channels\SendcloudChannel.php <?php /** * Created by PhpStorm. * User: SUN * Date: 2021/8/1 * Time: 3:42 */ namespace App\Channels; us
阅读全文