1
2

More than 5 years have passed since last update.

LaravelでDBと連携したバリデーションを行う

Posted at

退会済じゃない会員の中でメールアドレスが一意であることをバリデーションしたい。

RegisterUserRequest.php
class RegisterUserRequest extends FormRequest
{

  public function authorize()
  {
    return true;
  }

  public function rules()
  {
    return [
      'email' => [
        'required',
        'email',
        'confirmed',
        Rule::unique('users')->ignore(false, 'canceled'), 
      ],
    ];
  }

  public function messages()
  {
    return [
    //
    ];
  }
}
1
2
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
2