Laravel在更新时创建关系

时间:2018-05-18 06:21:04

标签: php laravel laravel-5 eloquent

我有一个包含Student和Book模型的图书馆管理系统。表的结构是

学生表

-C

书籍表

tar

此处,id | roll_no | name | created_at | updated_at 是主键

关系如下

在书本模型中

book_id | name | author | publication | student_id | created_at | updated_at

在学生模特中

boook_id

最初,books表中的public function student() { return $this->belongsTo('App\Student'); } public function books() { return $this->hasMany('App\Book'); } 。每当要发行图书时,都会提供student_id和学生null,图书表格中的book number字段会更新为学生的roll number。发出的。

在控制器中,我有以下代码

student_id

当我运行此代码时,我收到错误说
id

出了什么问题?
有没有更好的方法呢?

我正在使用Laravel 5.6

1 个答案:

答案 0 :(得分:1)

$('p').each(function(){
   if($(this).text().trim() == "&nbsp"){
       $(this).remove();
   }
});

这样改变希望它会起作用。