摘要: //创建控制器 php artisan make:controller DemoController //创建模型层 php artisan make:model Models/login //登录 php artisan make:model Models/list //列表 php artisa 阅读全文
posted @ 2020-12-03 12:01 满眼都是她 阅读(166) 评论(0) 推荐(0) 编辑
摘要: DB::table('users')->increment('votes'); // 自增 1 DB::table('users')->increment('votes', 5); // 自增 5 DB::table('users')->decrement('votes'); // 自减 1 DB: 阅读全文
posted @ 2020-12-03 11:47 满眼都是她 阅读(407) 评论(0) 推荐(0) 编辑