摘要:
public function ormDelete() { # 1.通过模型删除 // $student = Student::where('id',5); // $student->delete(); # 2.通过主键值删除 ## 2.1 删除单个 // Student::destroy(14); 阅读全文
摘要:
public function ormUpdate() { # 1.通过模型更新数据 /* $student = Student::find(14); $student->name = '小卡'; $student->save(); */ # 2.结合查询批量更新 $student = Studen 阅读全文
摘要:
public function ormCreate() { # 1. 使用模型新增 ->save() /* $student = new Student(); $student->name = '大圣'; $student->age = 500; $student->sex = '猴'; $stud 阅读全文
摘要:
Laravel 的 Eloquent ORM 提供了漂亮、简洁的 ActiveRecord 实现来和数据库进行交互。每个数据库表都有一个对应的「模型」可用来跟数据表进行交互。你可以通过模型查找数据表内的数据,以及将记录添加到数据表中。 1. 模型文件 <?php namespace App; use 阅读全文
摘要:
public function constructorQuery() { # 1,新增 DB::table('student')->insert([ ['name' => '王者之锤', 'age' => 18], ['name' => '地狱之眼', 'age' => 30] ]); # .... 阅读全文
摘要:
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\DB; use App\Student; class studentController extends 阅读全文