摘要: <!-- 1, url --> <a href="{{url('/')}}">跳转到主页</a> <!-- 2,action 方法 --> <a href="{{action('StudentController@index')}}">跳转到用户页面</a> <!-- 3,别名 --> <a hre 阅读全文
posted @ 2020-04-27 22:23 武卡卡 阅读(573) 评论(0) 推荐(0) 编辑
摘要: <!-- 1. 模板中输出PHP变量 --> @section('footer') <div style="color:#fff"> @parent <br> {{$content}} </div> @stop <!-- 2. 模板中调用PHP代码 --> {{ date("Y-m-d",time( 阅读全文
posted @ 2020-04-27 22:04 武卡卡 阅读(702) 评论(0) 推荐(0) 编辑
摘要: 1. 模板文件 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>@ 阅读全文
posted @ 2020-04-27 21:32 武卡卡 阅读(992) 评论(0) 推荐(0) 编辑
摘要: public function ormDelete() { # 1.通过模型删除 // $student = Student::where('id',5); // $student->delete(); # 2.通过主键值删除 ## 2.1 删除单个 // Student::destroy(14); 阅读全文
posted @ 2020-04-27 20:42 武卡卡 阅读(1810) 评论(0) 推荐(0) 编辑
摘要: public function ormUpdate() { # 1.通过模型更新数据 /* $student = Student::find(14); $student->name = '小卡'; $student->save(); */ # 2.结合查询批量更新 $student = Studen 阅读全文
posted @ 2020-04-27 20:26 武卡卡 阅读(2441) 评论(0) 推荐(0) 编辑
摘要: public function ormCreate() { # 1. 使用模型新增 ->save() /* $student = new Student(); $student->name = '大圣'; $student->age = 500; $student->sex = '猴'; $stud 阅读全文
posted @ 2020-04-27 20:16 武卡卡 阅读(396) 评论(0) 推荐(0) 编辑
摘要: Laravel 的 Eloquent ORM 提供了漂亮、简洁的 ActiveRecord 实现来和数据库进行交互。每个数据库表都有一个对应的「模型」可用来跟数据表进行交互。你可以通过模型查找数据表内的数据,以及将记录添加到数据表中。 1. 模型文件 <?php namespace App; use 阅读全文
posted @ 2020-04-27 18:53 武卡卡 阅读(1312) 评论(0) 推荐(0) 编辑
摘要: public function constructorQuery() { # 1,新增 DB::table('student')->insert([ ['name' => '王者之锤', 'age' => 18], ['name' => '地狱之眼', 'age' => 30] ]); # .... 阅读全文
posted @ 2020-04-27 18:50 武卡卡 阅读(375) 评论(0) 推荐(0) 编辑
摘要: <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\DB; use App\Student; class studentController extends 阅读全文
posted @ 2020-04-27 15:25 武卡卡 阅读(151) 评论(0) 推荐(0) 编辑