fastadmin手动添加关联模型
1、model

主键为关联模型的主键
public function product() { return $this->belongsTo('Product', 'product_id', 'id', [], 'LEFT')->setEagerlyType(0); }
2、controller

3、js


主键为关联模型的主键
public function product() { return $this->belongsTo('Product', 'product_id', 'id', [], 'LEFT')->setEagerlyType(0); }

