1
1

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.

Spatie laravel-data ライブラリ バリデーションのrequiredとnullable

Posted at

概要

  • laravel-dataにてパターン別にrequiredとnullableのバリデーションについてまとめる。

前提

  • バリデーションはライブラリのDataクラスを継承する任意のクラスのコンストラクターの引数指定箇所で定義するものとする。
  • 本記事においてバリデーションルールはRule要素を用いアノテーションで設定するものとする。

キーが必須・値が必須でstring

#[Rule(['required', 'string'])]
public string $キー名,

キーが必須・値が必須でinteger

#[Rule(['required', 'integer'])]
public int $キー名,

キーが必須・値が必須でboolean

#[Rule(['required', 'boolean'])]
public bool $キー名,

キーが必須・値が必須でstringもしくはnull

#[Rule(['required'])]
public ?string $キー名,

キーが必須・値が必須でstringもしくはnull

#[Rule(['required'])]
public ?string $キー名,
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?