摘要: 文件上传 配置文件 config -> filesystems.php,可以使用原有的磁盘,也可以新建磁盘 一、新建磁盘 'upload' => [ 'driver' => 'local', 'root' => storage_path('app/public'), //上传目录为 storage/ 阅读全文
posted @ 2020-07-03 23:10 JaydenQiu 阅读(368) 评论(0) 推荐(0)
摘要: 生成Auth所需命令 一、在已有的项目中生成auth认证 composer require laravel/ui php artisan ui vue --auth npm install && npm run dev 二、新建项目,并直接生成auth认证 laravel new blog --au 阅读全文
posted @ 2020-07-03 15:19 JaydenQiu 阅读(803) 评论(0) 推荐(0)