public function field() { return $this->belongsTo(HrmAuthFieldsModel::class, 'filed_id', 'id'); } public function children() { return $this->hasMany(HrmAuthFuncFieldsModel::class, 'father_id'); } public function getIsEmptyAttribute() { if (count($th…
我们来生成第一个模型 php artisan make:model Article #输出 Model created successfully. Created Migration: 2015_03_28_062517_create_articles_table 查看一下生成的文件 app/Article.php <?php namespace App; use Illuminate\Database\Eloquent\Model; class Article extends Model {…
routes.php文件创建路由参数由{}包起来,不需要$ Route::get('/stu/{as}','StuController@show'); 在相对应的Controller创建funciton public function show($asd){//实现方法的参数需要$ //查询Stu这个model类可以用find带上参数 //不能忘记引入相对应的model use App\Stu; $res=Stu::all()->find($asd); return view('stu/stu'…