組織用の製品を含むテーブルがあります。このシステムには、マルチテナントの方法で複数の組織が含まれます。Laravel 5.2列チェックによる検証
私products
テーブルには、次の列があります。
id organisation_id product_id other_columns
私はproducts
の要求を作成していると私は今create product
フォームからの入力を検証したいのです。 product_id
このorganisation_id
私request
でrules()
方法について一意であるための要件は、上記
public function rules()
{
return [
'part_number' => 'required|max:20|unique:products,part_number,'.$request->organisation_id.',organisation_id',
'other_fields_here' => ...
];
}
では動作しませんので、私はLaravelのマニュアルを理解するのに失敗しています。 ありがとうございます。