摘要: (慕课网_轻松学会Laravel-高级篇_天秤vs永恒老师_http://www.imooc.com/learn/702) 一、生成Auth所需文件 在Artisan控制台输入以下命令 php artisan make:auth 二、数据表 php artisan migrate 执行数据表迁移,就 阅读全文
posted @ 2016-12-18 17:50 少年飞刀 阅读(697) 评论(0) 推荐(0) 编辑
摘要: (慕课网_轻松学会Laravel-高级篇_天秤vs永恒老师_http://www.imooc.com/learn/702) 一、概述 Artisan是Laravel中自带的命令行工具的名称 由强大的Symfony Console组件驱动 提供了一些对应用开发有帮助的命令 二、使用帮助 查看所有可用的 阅读全文
posted @ 2016-12-18 17:11 少年飞刀 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 1、asset('path'):用于引入静态文件,包括css。js。img 2、分页,调用模型的paginate(每页显示的行数)方法, 如$student = Student::paginate(2); 在模板中输出分页信息 <div class="pull-right"> {{ $student 阅读全文
posted @ 2016-12-18 16:06 少年飞刀 阅读(397) 评论(0) 推荐(0) 编辑
摘要: (慕课网_轻松学会Laravel-表单篇_天秤vs永恒老师_http://www.imooc.com/learn/699) Controller 1、Controller-Request 2、Controller-session 默认使用file驱动,可以在配置文件中修改 Laravel中使用ses 阅读全文
posted @ 2016-12-18 10:51 少年飞刀 阅读(1594) 评论(0) 推荐(0) 编辑