Laravel
doubly_yi
这个作者很懒,什么都没留下…
展开
-
Laravel创建路由
我这里使用的Laravel版本是5.6,路由位置在routes/web.php中,所以我们在这个文件中添加我们想要添加的路由。 1.基础路由 //get请求,结果如下图 Route::get('basic1',function (){ return 'Hello World'; }); //post请求,这里不展示结果图 Route::post('basic2',function ...原创 2018-07-30 13:33:56 · 1474 阅读 · 0 评论 -
Laravel DB facade CURD
//新增 $rs = DB::insert('insert into student(name,age) values (?,?)',['kit',20]); //更新 $rs = DB::update('update student set age=? where name=?',[20,'Doubly']); //...原创 2018-07-30 15:46:46 · 233 阅读 · 0 评论 -
Laravel 查询构造器 CURD
新增 //插入一条数据 public function insert(){ $rs = DB::table('student')->insert([ 'name' => 'Kit', 'age' => 12 ]); dd($rs); //true } //插入一条数据并返回自增ID public funct...原创 2018-07-30 16:48:47 · 468 阅读 · 0 评论 -
常用的artisan命令(转载)
全局篇 查看artisan命令 php artisanphp artisan list 查看某个帮助命令 php artisan help make:model 查看laravel版本 php artisan --version 使用...转载 2018-08-01 10:32:54 · 233 阅读 · 0 评论