建立模型
在控制器当中书写一个方法
use App\Student; //引入模型 public function orm1() { $students = Student::all(); //查询所有数据 dd($students); }
本文共 204 字,大约阅读时间需要 1 分钟。
建立模型
在控制器当中书写一个方法
use App\Student; //引入模型 public function orm1() { $students = Student::all(); //查询所有数据 dd($students); }
转载于:https://www.cnblogs.com/chenlini/p/8422482.html