-1

この問題があります...新しい場所レコードを作成し、それが存在することを確認しました。

ここに画像の説明を入力

これまでのところは問題ありませんが、レストランにリンクしようとすると、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

解決策はありますか?タンク・ユー

4

1 に答える 1