0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

「ネストされた」リクエストに対するバリデーションlaravel8

Posted at

はじめに

laravelドキュメントのバリデーションについて読んでいて

受信HTTPリクエストに「ネストされた」フィールドデータが含まれている場合、
「ドット」構文を利用してバリデーションを指定できます。

とあり。
ネストされたHTTPリクエストがなんぞやとなったのでその記録。

ネストしたリクエストを送信する

index.html
<form>
  <input type="text" name="sample[][name]">
  <input type="text" name="sample[][email]">
  <input type="text" name="sample[][age]">
</form>

リクエストの中身

request
$sample = [
    ['name' => 'tarou', 'email' => 'tarou@test.com', 'age' => 22],
]

こんな感じでネスト(配列)にして飛ばすことができる。

バリデーション

SampleController.php

$request->validate([
  'sample.name' => ['required', 'max:20'],
  'sample.email' => ['required','unique:users'],
]);

環境

larave8

終わりに

「へー」という感じでした。
特に記事にする必要なかったですね、、

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?