次のようなArdent v3.3.0 モデルがあります。
class Company extends Ardent
{
protected $fillable = [
'name',
'address'
];
public static $rules = [
'name' => 'required',
'address' => 'string'
];
public function workers()
{
return $this->belongsToMany('App\Worker')->withPivot('worker_type');
}
}
次のような別のモデル:
class Worker extends Ardent
{
protected $fillable = [
'name',
];
public static $rules = [
'name' => 'required',
];
public function company()
{
return $this->belongsToMany('App\Company')->withPivot('worker_type');
}
}
私のコントローラーでは、次のような保存メソッドを呼び出しています。
$worker = New Worker;
$worker->name = "Jane Smith";
$company = Company::find($id);
$company->workers()->save($worker, ['worker_type' => 'contractor'];
Laravel と Ardent のドキュメントによると、私は正しく関係を形成していますが、Ardent はエラーをスローします。ErrorException in Ardent.php line 821: Invalid argument supplied for foreach()
このエラーの原因は何ですか? それは私のコードまたは Ardent のバグですか?
注: Ardent バージョン 3.3.0 を使用しています。バージョン 3.0.0 にロールバックすると、問題はなくなります。