この問題があります...新しい場所レコードを作成し、それが存在することを確認しました。
これまでのところは問題ありませんが、レストランにリンクしようとすると、422 エラーが返されます。
答えを探していましたが、何が間違っていたのかわかりません。
これは私のコードです:
public function store(Request $request){
$this->authorize('create', Feeding::class);
$request->validate([
'date' => 'required|date|max:255',
'food' => 'required|string|max:255',
'observation' => 'required|string',
'quantityLunchs' =>'required|integer',
'user_id' => 'required|exists:users,id',
'artist_id' => 'required|exists:artists,id',
'place_id' => 'required|exists:places,id',
], self::$messages);
$feeding = Feeding::create($request ->all());
return response() -> json($feeding, 201); //success
}
郵便配達員で使用するヘッダー:
Authorizaton : ベアラー トークン
受け入れる:アプリケーション/json
解決策はありますか?タンク・ユー