laravel 笔记

2019-08-14  本文已影响0人  清风倚歌行
1. laravel-admin 后台新建管理员头像无法显示:
2. laravel 关闭ORM模型时间

在模型中增加:php public $timestamps = false

3. laravel 模型对应表名默认是复数

在模型中指定表名:php protected $table='tablename'

4. laravel 前段工作流使用 yarn 不存在

参考https://blog.csdn.net/xiaobinqt/article/details/87692228

5. laravel 执行npm run dev/watch-poll 报错

参考https://www.cnblogs.com/lovebing/p/7504851.html
https://www.cnblogs.com/phpper/p/6781426.html

6. 出现419状态码错误

在form表单中增加 {{ csrf_field() }}

7. 添加报错:Add [name] to fillable property to allow mass assignment on

模型设置允许字段

protected $fillable = ['name','email'];
8. 数据库无法连接
9.Laravel 使用自定义方法和扩展并实现自动加载
10.迁移数据库字段报错【mysql5.7.7以下版本】
上一篇 下一篇

猜你喜欢

热点阅读