参考资料
填坑
- 运行找不到vendor文件夹?
composer update --no-scripts
- 缺少相应拓展?
apt install php7.x-extension_name
安装完成后,会触发触发器,更新php.ini - 打开debug
vim config/app.php
- No application encryption key has been specified.?
mv .env.example .env php artisan key:generate
学习数据库
- 使用Input需要引入对应的类:
use Illuminate\Support\Facades\Input;
- 最基本的用法
- LaravelCollective原版文档
- Laravel中文文档
- Laravel学院
- 数据库更新
网友评论