摘要:
1.添加选择Topic使用Select2,如何安装Select2 ,具体使用实例 Select2 and Laravel: Ajax Autocomplete 及 Loading data remotely in Select2 – Laravel使用命令行: 1 composer require select2/select2完成后打开resources\app.scss,添加Select2引... 阅读全文
摘要:
1.话题【Topic】执行命令: 1 php artisan make:model Topic –cmr修改****_**_**_create_topics_table.php数据库迁移文件如下: 1 class CreateTopicsTable extends Migration 2 { 3 /** 4 * Run the migrations. 5 *... 阅读全文
摘要:
1.使用UEditor增量包:simple-ueditors执行下载: 1 git clone https://github.com/JellyBool/simple-ueditor.git2.用此项目的 ueditor 目录替换原来的 public/vendor/ueditor 目录;可以先删除原来的目录,移动simple-ueditor文件夹下ueditor整个文件夹的到public/ven... 阅读全文
摘要:
上一节代码中已经实现 下面代码中的validate内部配置就是: 1 public function store(Request $request) 2 { 3 // 4 $data = $request->validate([ 5 'title' => 'required|min:8', 6 'c... 阅读全文