一对多关联

class Work extends Model
{
    protected $table='work';
    protected $connection='zwhl';
    public function follow(){
        return $this->hasMany('WorkFollow','work_id','id')->visible(['status','content','create_by','create_at']);
    }
}

 

posted @ 2020-08-12 15:02  CanyingV  阅读(118)  评论(0编辑  收藏  举报